結果

問題 No.1705 Mode of long array
ユーザー kept1994kept1994
提出日時 2022-05-01 12:35:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 412 ms / 3,000 ms
コード長 2,614 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 103,860 KB
最終ジャッジ日時 2024-06-30 14:55:55
合計ジャッジ時間 18,691 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,152 KB
testcase_01 AC 38 ms
52,888 KB
testcase_02 AC 38 ms
53,984 KB
testcase_03 AC 113 ms
76,556 KB
testcase_04 AC 105 ms
76,756 KB
testcase_05 AC 125 ms
77,208 KB
testcase_06 AC 181 ms
78,024 KB
testcase_07 AC 182 ms
77,340 KB
testcase_08 AC 190 ms
77,784 KB
testcase_09 AC 185 ms
77,908 KB
testcase_10 AC 184 ms
78,028 KB
testcase_11 AC 172 ms
77,756 KB
testcase_12 AC 193 ms
77,864 KB
testcase_13 AC 359 ms
96,912 KB
testcase_14 AC 303 ms
87,228 KB
testcase_15 AC 308 ms
78,936 KB
testcase_16 AC 352 ms
80,332 KB
testcase_17 AC 310 ms
78,936 KB
testcase_18 AC 277 ms
79,232 KB
testcase_19 AC 361 ms
82,152 KB
testcase_20 AC 281 ms
80,768 KB
testcase_21 AC 315 ms
93,740 KB
testcase_22 AC 383 ms
102,728 KB
testcase_23 AC 216 ms
77,684 KB
testcase_24 AC 215 ms
77,412 KB
testcase_25 AC 218 ms
77,384 KB
testcase_26 AC 216 ms
77,468 KB
testcase_27 AC 217 ms
77,592 KB
testcase_28 AC 214 ms
77,588 KB
testcase_29 AC 211 ms
77,588 KB
testcase_30 AC 217 ms
77,496 KB
testcase_31 AC 215 ms
77,280 KB
testcase_32 AC 219 ms
77,624 KB
testcase_33 AC 315 ms
103,612 KB
testcase_34 AC 294 ms
103,452 KB
testcase_35 AC 311 ms
103,448 KB
testcase_36 AC 304 ms
103,328 KB
testcase_37 AC 293 ms
103,360 KB
testcase_38 AC 308 ms
103,460 KB
testcase_39 AC 289 ms
103,468 KB
testcase_40 AC 307 ms
103,152 KB
testcase_41 AC 296 ms
103,380 KB
testcase_42 AC 290 ms
103,392 KB
testcase_43 AC 393 ms
103,164 KB
testcase_44 AC 412 ms
103,860 KB
testcase_45 AC 409 ms
103,536 KB
testcase_46 AC 408 ms
103,840 KB
testcase_47 AC 399 ms
103,208 KB
testcase_48 AC 401 ms
103,668 KB
testcase_49 AC 362 ms
103,720 KB
testcase_50 AC 367 ms
103,436 KB
testcase_51 AC 377 ms
103,432 KB
testcase_52 AC 358 ms
103,312 KB
testcase_53 AC 374 ms
103,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

MOD = 998244353

class SegTree:
    def __init__(self, monoid, bottomList, func):
        self.monoid = monoid
        self.func = func
        self.bottomLen = len(bottomList)
        self.offset = self.bottomLen        # セグ木の最下層の最初のインデックスに合わせるためのオフセット
        self.segLen = self.bottomLen * 2
        self.tree = [monoid] * self.segLen
        self.build(bottomList)

    """
    初期化
    O(self.segLen)
    """
    def build(self, seq):
        # 最下段の初期化
        for i, x in enumerate(seq, self.offset):
            self.tree[i] = x
        # ビルド
        for i in range(self.offset - 1, 0, -1):
            self.tree[i] = self.func(self.tree[i << 1], self.tree[i << 1 | 1])

    """
    一点更新
    O(log(self.bottomLen))
    """
    def pointUpdate(self, i: int, val: int):
        i += self.offset
        self.tree[i] = val
        while i > 1:
            i >>= 1 # 2で割って頂点に達するまで下層から遡上
            self.tree[i] = self.func(self.tree[i << 1], self.tree[i << 1 | 1]) # 必ず末尾0と1がペアになるのでor演算子

    """ 区間取得
    O(log(self.bottomLen))
    """
    def getRange(self, l: int, r: int): # r含まない
        l += self.offset
        r += self.offset
        vL = (self.monoid, 0)
        vR = (self.monoid, 0)
        while l < r:
            if l & 1:
                vL = self.func(vL, self.tree[l])
                l += 1
            if r & 1:
                r -= 1
                vR = self.func(self.tree[r], vR)
            l >>= 1
            r >>= 1
        return self.func(vL, vR)

    """ 一点取得
    O(log(self.bottomLen))
    """
    def getPoint(self, i: int):
        i += self.offset
        return self.tree[i]

def f(x: tuple, y: tuple):
    if x[0] > y[0]:
        return x
    elif x[0] == y[0]:
        if x[1] > y[1]:
            return x
        else:
            return y
    else:
        return y

def main():
    N, M = map(int, input().split())
    A = list(map(int, input().split()))
    Q = int(input())
    seg = SegTree(0, [(aa, i) for i, aa in enumerate(A)], f)
    for _ in range(Q):
        t, x, y = list(map(int, input().split()))
        if t == 1:
            num, _ = seg.getPoint(x - 1)
            seg.pointUpdate(x - 1, (num + y, x - 1))
        elif t == 2:
            num, _ = seg.getPoint(x - 1)
            seg.pointUpdate(x - 1, (num - y, x - 1))
        else:
            print((seg.getRange(0, M))[1] + 1)
    return

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