목차

수열과 쿼리 16

ps
링크acmicpc.net/…
출처BOJ
문제 번호14428
문제명수열과 쿼리 16
레벨골드 1
분류

구간 쿼리

시간복잡도O(n+mlogn)
인풋사이즈n<=100,000, m<=100,000
사용한 언어Python
제출기록49720KB / 1352ms
최고기록1352ms
해결날짜2021/03/20

풀이

코드

"""Solution code for "BOJ 14428. 수열과 쿼리 16".

- Problem link: https://www.acmicpc.net/problem/14428
- Solution link: http://www.teferi.net/ps/problems/boj/14428
"""

import sys
from teflib import segmenttree


def main():
    N = int(sys.stdin.readline())
    A = [int(x) for x in sys.stdin.readline().split()]
    segtree = segmenttree.SegmentTree((a_i, i + 1) for i, a_i in enumerate(A))
    M = int(sys.stdin.readline())
    for i in range(M):
        query = [int(x) for x in sys.stdin.readline().split()]
        if query[0] == 1:
            _, i, v = query
            segtree.set(i - 1, (v, i))
        else:
            _, i, j = query
            print(segtree.query(i - 1, j)[1])


if __name__ == '__main__':
    main()