結果

問題 No.875 Range Mindex Query
ユーザー pynomipynomi
提出日時 2019-09-07 19:07:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,362 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 87,032 KB
実行使用メモリ 175,868 KB
最終ジャッジ日時 2023-09-09 08:20:40
合計ジャッジ時間 11,095 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

inf = 2**31-1

N, Q = map(int,input().split())
A = list(map(int,input().split()))
queries = [[int(e)-1 for e in input().split()] for _ in range(Q)]

class SegmentTree:
    def __init__(self, N):
        self.N = 2**(N-1).bit_length()
        self.data = [[inf, -1] for _ in range(2*self.N)]

    def update(self, k, x):
        self.data[k+N-1] = [x, k]
        k += self.N-1
        while k >= 0:
            k = (k - 1) // 2
            if self.data[2*k+1][0] < self.data[2*k+2][0]:
                self.data[k] = self.data[2*k+1][:]
            else:
                self.data[k] = self.data[2*k+2][:]
    
    def query(self, l, r):
        L = l + self.N
        R = r + self.N
        s = [inf, -1]
        while L < R:
            if R & 1:
                R -= 1
                if s[0] > self.data[R-1][0]:
                    s = self.data[R-1]
            if L & 1:
                if s[0] > self.data[L-1][0]:
                    s = self.data[L-1]
                L += 1
            L >>= 1; R >>= 1
        return s

st = SegmentTree(N)

for i, a in enumerate(A):
    st.update(i, a)

def solve(q, l, r):
    if q == 0:
        al, li = st.query(l, l+1)
        ar, ri = st.query(r, r+1)
        st.update(l, ar)
        st.update(r, al)
    elif q == 1:
        m, i = st.query(l,r+1)
        print(i+1)

for q, l, r in queries:
    solve(q, l, r)
0