結果

問題 No.1705 Mode of long array
ユーザー chineristACchineristAC
提出日時 2021-10-08 22:32:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 3,000 ms
コード長 1,697 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 97,792 KB
最終ジャッジ日時 2024-07-23 05:30:53
合計ジャッジ時間 12,461 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,808 KB
testcase_01 AC 47 ms
56,320 KB
testcase_02 AC 47 ms
55,936 KB
testcase_03 AC 86 ms
77,312 KB
testcase_04 AC 84 ms
77,824 KB
testcase_05 AC 93 ms
78,292 KB
testcase_06 AC 115 ms
78,208 KB
testcase_07 AC 115 ms
78,252 KB
testcase_08 AC 116 ms
78,080 KB
testcase_09 AC 114 ms
78,080 KB
testcase_10 AC 111 ms
77,824 KB
testcase_11 AC 116 ms
78,292 KB
testcase_12 AC 115 ms
78,080 KB
testcase_13 AC 224 ms
93,952 KB
testcase_14 AC 191 ms
86,656 KB
testcase_15 AC 175 ms
79,488 KB
testcase_16 AC 193 ms
80,572 KB
testcase_17 AC 168 ms
79,360 KB
testcase_18 AC 158 ms
79,864 KB
testcase_19 AC 207 ms
82,816 KB
testcase_20 AC 171 ms
81,536 KB
testcase_21 AC 188 ms
92,032 KB
testcase_22 AC 238 ms
97,792 KB
testcase_23 AC 146 ms
77,824 KB
testcase_24 AC 143 ms
77,924 KB
testcase_25 AC 147 ms
77,824 KB
testcase_26 AC 145 ms
78,080 KB
testcase_27 AC 146 ms
77,696 KB
testcase_28 AC 144 ms
77,884 KB
testcase_29 AC 147 ms
78,080 KB
testcase_30 AC 146 ms
77,848 KB
testcase_31 AC 146 ms
77,952 KB
testcase_32 AC 157 ms
77,820 KB
testcase_33 AC 245 ms
94,976 KB
testcase_34 AC 247 ms
94,720 KB
testcase_35 AC 247 ms
94,848 KB
testcase_36 AC 245 ms
94,976 KB
testcase_37 AC 247 ms
95,104 KB
testcase_38 AC 247 ms
94,848 KB
testcase_39 AC 242 ms
94,720 KB
testcase_40 AC 241 ms
94,720 KB
testcase_41 AC 247 ms
94,720 KB
testcase_42 AC 246 ms
94,848 KB
testcase_43 AC 177 ms
94,848 KB
testcase_44 AC 203 ms
94,592 KB
testcase_45 AC 202 ms
95,192 KB
testcase_46 AC 203 ms
95,084 KB
testcase_47 AC 217 ms
94,720 KB
testcase_48 AC 230 ms
94,900 KB
testcase_49 AC 256 ms
95,104 KB
testcase_50 AC 251 ms
95,184 KB
testcase_51 AC 250 ms
94,848 KB
testcase_52 AC 244 ms
95,092 KB
testcase_53 AC 244 ms
94,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree:
    def __init__(self, init_val, segfunc, ide_ele):
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        self.size = n
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        k += self.num
        self.tree[k] = x
        while k > 1:
            k >>= 1
            self.tree[k] = self.segfunc(self.tree[2*k], self.tree[2*k+1])

    def query(self, l, r):
        if r==self.size:
            r = self.num

        res = self.ide_ele

        l += self.num
        r += self.num
        right = []
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.tree[l])
                l += 1
            if r & 1:
                right.append(self.tree[r-1])
            l >>= 1
            r >>= 1

        for e in right[::-1]:
            res = self.segfunc(res,e)
        return res

import sys,random
from collections import deque
from heapq import heappush,heappop

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,M = mi()
A = li()

Seg = SegmentTree([(0,0)]+[(A[i],i+1) for i in range(M)],max,(-1,-1))

for _ in range(int(input())):
    t,x,y = mi()
    if t==1:
        cnt,val = Seg.tree[Seg.num+x]
        Seg.update(x,(cnt+y,x))
    elif t==2:
        cnt,val = Seg.tree[Seg.num+x]
        Seg.update(x,(cnt-y,x))
    else:
        print(Seg.query(1,M+1)[1])


0