結果

問題 No.1705 Mode of long array
ユーザー 👑 rin204rin204
提出日時 2022-01-23 01:22:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 399 ms / 3,000 ms
コード長 1,954 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,516 KB
最終ジャッジ日時 2024-05-06 06:49:40
合計ジャッジ時間 17,784 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 36 ms
52,736 KB
testcase_03 AC 100 ms
76,928 KB
testcase_04 AC 93 ms
76,800 KB
testcase_05 AC 111 ms
77,436 KB
testcase_06 AC 162 ms
77,312 KB
testcase_07 AC 167 ms
77,740 KB
testcase_08 AC 169 ms
77,556 KB
testcase_09 AC 162 ms
77,844 KB
testcase_10 AC 158 ms
77,596 KB
testcase_11 AC 169 ms
77,792 KB
testcase_12 AC 167 ms
77,440 KB
testcase_13 AC 327 ms
96,696 KB
testcase_14 AC 293 ms
86,936 KB
testcase_15 AC 300 ms
79,040 KB
testcase_16 AC 319 ms
79,432 KB
testcase_17 AC 273 ms
78,636 KB
testcase_18 AC 251 ms
78,948 KB
testcase_19 AC 340 ms
82,304 KB
testcase_20 AC 268 ms
81,024 KB
testcase_21 AC 293 ms
93,312 KB
testcase_22 AC 359 ms
101,340 KB
testcase_23 AC 201 ms
76,928 KB
testcase_24 AC 208 ms
76,800 KB
testcase_25 AC 208 ms
76,924 KB
testcase_26 AC 209 ms
76,876 KB
testcase_27 AC 200 ms
76,800 KB
testcase_28 AC 207 ms
76,928 KB
testcase_29 AC 204 ms
76,792 KB
testcase_30 AC 201 ms
76,800 KB
testcase_31 AC 202 ms
77,000 KB
testcase_32 AC 202 ms
76,672 KB
testcase_33 AC 283 ms
102,400 KB
testcase_34 AC 294 ms
102,076 KB
testcase_35 AC 281 ms
102,496 KB
testcase_36 AC 282 ms
102,136 KB
testcase_37 AC 294 ms
102,376 KB
testcase_38 AC 279 ms
102,272 KB
testcase_39 AC 276 ms
102,016 KB
testcase_40 AC 292 ms
102,144 KB
testcase_41 AC 281 ms
102,516 KB
testcase_42 AC 280 ms
102,144 KB
testcase_43 AC 351 ms
102,272 KB
testcase_44 AC 362 ms
102,272 KB
testcase_45 AC 365 ms
102,212 KB
testcase_46 AC 368 ms
102,144 KB
testcase_47 AC 389 ms
102,240 KB
testcase_48 AC 399 ms
102,132 KB
testcase_49 AC 336 ms
102,460 KB
testcase_50 AC 350 ms
102,144 KB
testcase_51 AC 354 ms
102,144 KB
testcase_52 AC 347 ms
102,016 KB
testcase_53 AC 324 ms
101,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree():
    def __init__(self, n, e, ope, lst=[]):
        self.N0 = 2 ** (n - 1).bit_length()
        self.e = e
        self.ope = ope
        self.data = [e] * (2 * self.N0)
        if lst:
            for i in range(n):
                self.data[self.N0 + i] = lst[i]
            for i in range(self.N0 - 1, 0, -1):
                self.data[i] = self.ope(self.data[2 * i], self.data[2 * i + 1])
    
    def f5(self):
        for i in range(self.N0 - 1, 0, -1):
            self.data[i] = self.ope(self.data[2 * i], self.data[2 * i + 1])
                
    def update(self, i, x): #a_iの値をxに更新
        i += self.N0
        self.data[i] = (x, self.data[i][1])
        while i > 1:
            i >>= 1
            self.data[i] = self.ope(self.data[2 * i], self.data[2 * i + 1])
    
    def add(self, i, x):
        self.update(i, x + self.get(i))
    
    def query(self, l, r): #区間[l, r)での演算結果
        if r <= l:
            return self.e
            
        res = self.e
        l += self.N0
        r += self.N0
        while l < r:
            if l & 1:
                res = self.ope(res, self.data[l])
                l += 1
            if r & 1:
                r -= 1
                res = self.ope(res, self.data[r])
            l >>= 1
            r >>= 1
        return res
            
    
    def get(self, i): #a_iの値を返す
        return self.data[self.N0 + i][0]

e = (-1, -1)
def ope(x, y):
    if x[0] > y[0]:
        return x
    elif x[0] < y[0]:
        return y
    elif x[1] > y[1]:
        return x
    else:
        return y

n, m = map(int, input().split())
A = list(map(int, input().split()))
seg = SegTree(m, e, ope, [(a, i) for i, a in enumerate(A, 1)])
q = int(input())
for _ in range(q):
    t, x, y = map(int, input().split())
    x -= 1
    if t == 1:
        seg.add(x, y)
    elif t == 2:
        seg.add(x, -y)
    else:
        print(seg.query(0, m)[1])
    
        
0