ps | |
---|---|
링크 | acmicpc.net/… |
출처 | BOJ |
문제 번호 | 14897 |
문제명 | 서로 다른 수와 쿼리 1 |
레벨 | 플래티넘 2 |
분류 |
구간 쿼리 |
시간복잡도 | O(n+qlogn) |
인풋사이즈 | n<=1,000,000, q<=1,000,000 |
사용한 언어 | Python |
제출기록 | 433004KB / 12984ms |
최고기록 | 12984ms |
해결날짜 | 2021/05/03 |
"""Solution code for "BOJ 14897. 서로 다른 수와 쿼리 1".
- Problem link: https://www.acmicpc.net/problem/14897
- Solution link: http://www.teferi.net/ps/problems/boj/14897
"""
import sys
from teflib import fenwicktree
def main():
N = int(sys.stdin.readline())
A = [int(x) for x in sys.stdin.readline().split()]
queries = [[] for _ in range(N)]
Q = int(sys.stdin.readline())
for query_num in range(Q):
l, r = [int(x) for x in sys.stdin.readline().split()]
queries[r - 1].append((l - 1, query_num))
last_pos = dict()
fenwick = fenwicktree.FenwickTree(N)
answers = [None] * Q
for i, a_i in enumerate(A):
try:
fenwick.update(last_pos[a_i], -1)
except KeyError:
pass
fenwick.update(i, 1)
last_pos[a_i] = i
for l, query_num in queries[i]:
answers[query_num] = fenwick.query(l, i + 1)
print(*answers, sep='\n')
if __name__ == '__main__':
main()