結果

問題 No.1705 Mode of long array
ユーザー ygd.ygd.
提出日時 2021-10-10 12:41:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 448 ms / 3,000 ms
コード長 2,048 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 92,388 KB
最終ジャッジ日時 2024-09-14 07:05:15
合計ジャッジ時間 15,533 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 99 ms
76,280 KB
testcase_04 AC 96 ms
76,504 KB
testcase_05 AC 112 ms
76,152 KB
testcase_06 AC 139 ms
76,788 KB
testcase_07 AC 137 ms
77,012 KB
testcase_08 AC 142 ms
77,148 KB
testcase_09 AC 131 ms
76,528 KB
testcase_10 AC 123 ms
76,412 KB
testcase_11 AC 134 ms
77,116 KB
testcase_12 AC 129 ms
76,592 KB
testcase_13 AC 345 ms
88,676 KB
testcase_14 AC 286 ms
82,916 KB
testcase_15 AC 276 ms
78,768 KB
testcase_16 AC 325 ms
79,468 KB
testcase_17 AC 243 ms
78,380 KB
testcase_18 AC 226 ms
78,584 KB
testcase_19 AC 330 ms
79,972 KB
testcase_20 AC 258 ms
79,216 KB
testcase_21 AC 275 ms
86,948 KB
testcase_22 AC 367 ms
91,616 KB
testcase_23 AC 135 ms
76,400 KB
testcase_24 AC 133 ms
76,424 KB
testcase_25 AC 138 ms
76,724 KB
testcase_26 AC 136 ms
76,188 KB
testcase_27 AC 130 ms
76,376 KB
testcase_28 AC 131 ms
76,604 KB
testcase_29 AC 137 ms
76,744 KB
testcase_30 AC 131 ms
76,564 KB
testcase_31 AC 133 ms
76,404 KB
testcase_32 AC 138 ms
76,252 KB
testcase_33 AC 164 ms
92,348 KB
testcase_34 AC 177 ms
91,924 KB
testcase_35 AC 166 ms
91,972 KB
testcase_36 AC 166 ms
91,912 KB
testcase_37 AC 179 ms
91,816 KB
testcase_38 AC 165 ms
92,240 KB
testcase_39 AC 176 ms
91,816 KB
testcase_40 AC 176 ms
92,168 KB
testcase_41 AC 163 ms
92,024 KB
testcase_42 AC 161 ms
91,972 KB
testcase_43 AC 407 ms
92,248 KB
testcase_44 AC 436 ms
91,872 KB
testcase_45 AC 435 ms
91,924 KB
testcase_46 AC 448 ms
91,956 KB
testcase_47 AC 428 ms
92,388 KB
testcase_48 AC 448 ms
92,300 KB
testcase_49 AC 249 ms
91,972 KB
testcase_50 AC 251 ms
92,016 KB
testcase_51 AC 256 ms
92,028 KB
testcase_52 AC 259 ms
92,160 KB
testcase_53 AC 263 ms
92,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
input = sys.stdin.buffer.readline

class SegmentTree(object):
    def __init__(self, A, dot, unit):
        n = 1 << (len(A) - 1).bit_length()
        tree = [unit] * (2 * n)
        for i, v in enumerate(A):
            tree[i + n] = v
        for i in range(n - 1, 0, -1):
            tree[i] = dot(tree[i << 1], tree[i << 1 | 1])
        self._n = n
        self._tree = tree
        self._dot = dot
        self._unit = unit

    def __getitem__(self, i):
        return self._tree[i + self._n]

    def update(self, i, v):
        i += self._n
        self._tree[i] = v
        while i != 1:
            i >>= 1
            self._tree[i] = self._dot(self._tree[i << 1], self._tree[i << 1 | 1])

    def add(self, i, v):
        self.update(i, self[i] + v)

    def sum(self, l, r): #これで[l,r)から取り出す。
        l += self._n
        r += self._n
        l_val = r_val = self._unit
        while l < r:
            if l & 1:
                l_val = self._dot(l_val, self._tree[l])
                l += 1
            if r & 1:
                r -= 1
                r_val = self._dot(self._tree[r], r_val)
            l >>= 1
            r >>= 1
        return self._dot(l_val, r_val)

def main():
    N,M = map(int,input().split())
    A = list(map(int,input().split()))
    Tree = SegmentTree([0]*M,max,-1)
    for i in range(M):
        Tree.add(i,A[i]) #0-indexで追加していることに注意

    Q = int(input())
    for _ in range(Q):
        t,x,y = map(int,input().split())
        x -= 1 #0-index
        if t == 1:
            Tree.add(x,y)
        if t == 2:
            Tree.add(x,-y)
        if t == 3:
            mx = Tree.sum(0,M)
            ok = M
            ng = 0
            while abs(ok-ng) > 1:
                mid = (ok+ng)//2
                if Tree.sum(mid,M) < mx: #[mid,M)にmxが入っていない
                    ok = mid
                else:
                    ng = mid
            print(ok) #1indexでおk

if __name__ == '__main__':
    main()
0