結果

問題 No.1705 Mode of long array
ユーザー tassei903tassei903
提出日時 2021-10-08 23:26:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 3,000 ms
コード長 1,985 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 94,592 KB
最終ジャッジ日時 2024-07-23 07:28:27
合計ジャッジ時間 11,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,736 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 78 ms
76,400 KB
testcase_04 AC 75 ms
74,752 KB
testcase_05 AC 85 ms
76,928 KB
testcase_06 AC 99 ms
76,668 KB
testcase_07 AC 111 ms
76,928 KB
testcase_08 AC 111 ms
77,056 KB
testcase_09 AC 107 ms
76,672 KB
testcase_10 AC 108 ms
76,744 KB
testcase_11 AC 110 ms
77,248 KB
testcase_12 AC 99 ms
76,684 KB
testcase_13 AC 208 ms
90,716 KB
testcase_14 AC 184 ms
84,532 KB
testcase_15 AC 171 ms
77,952 KB
testcase_16 AC 187 ms
78,696 KB
testcase_17 AC 162 ms
78,080 KB
testcase_18 AC 150 ms
78,080 KB
testcase_19 AC 196 ms
80,348 KB
testcase_20 AC 162 ms
79,232 KB
testcase_21 AC 183 ms
88,960 KB
testcase_22 AC 222 ms
94,204 KB
testcase_23 AC 149 ms
76,544 KB
testcase_24 AC 146 ms
76,476 KB
testcase_25 AC 144 ms
76,480 KB
testcase_26 AC 149 ms
76,524 KB
testcase_27 AC 150 ms
76,928 KB
testcase_28 AC 146 ms
76,416 KB
testcase_29 AC 147 ms
76,412 KB
testcase_30 AC 151 ms
76,416 KB
testcase_31 AC 145 ms
76,412 KB
testcase_32 AC 149 ms
76,288 KB
testcase_33 AC 213 ms
93,824 KB
testcase_34 AC 201 ms
93,860 KB
testcase_35 AC 203 ms
94,080 KB
testcase_36 AC 203 ms
94,160 KB
testcase_37 AC 204 ms
94,048 KB
testcase_38 AC 204 ms
94,336 KB
testcase_39 AC 205 ms
94,464 KB
testcase_40 AC 198 ms
93,824 KB
testcase_41 AC 204 ms
94,348 KB
testcase_42 AC 204 ms
94,080 KB
testcase_43 AC 186 ms
94,340 KB
testcase_44 AC 200 ms
93,888 KB
testcase_45 AC 203 ms
93,824 KB
testcase_46 AC 195 ms
94,168 KB
testcase_47 AC 204 ms
94,488 KB
testcase_48 AC 205 ms
94,208 KB
testcase_49 AC 219 ms
93,952 KB
testcase_50 AC 213 ms
94,592 KB
testcase_51 AC 213 ms
94,208 KB
testcase_52 AC 216 ms
93,824 KB
testcase_53 AC 211 ms
93,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

class SegmentTree:
    # 初期化処理
    # f : SegmentTreeにのせるモノイド
    # default : fに対する単位元
    def __init__(self, size, f=lambda x,y : max(x,y), default=0):
        self.size = 2**(size-1).bit_length() # 簡単のため要素数Nを2冪にする
        self.default = default
        self.dat = [default]*(self.size*2) # 要素を単位元で初期化
        self.f = f

    def update(self, i, x):
        i += self.size
        self.dat[i] += x
        while i > 0:
            i >>= 1
            self.dat[i] = self.f(self.dat[i*2], self.dat[i*2+1])

    def query(self, l, r):
        l += self.size
        r += self.size
        lres, rres = self.default, self.default
        while l < r:
            if l & 1:
                lres = self.f(lres, self.dat[l])
                l += 1

            if r & 1:
                r -= 1
                rres = self.f(self.dat[r], rres) # モノイドでは可換律は保証されていないので演算の方向に注意
            l >>= 1
            r >>= 1
        res = self.f(lres, rres)
        return res

    def query2(self):
        s = 1
        #print(self.size)
        while s<self.size:
            #print(s)
            if self.dat[s*2]>self.dat[s*2+1]:
                s = s*2
            else:
                s = s*2+1
        return s-self.size


n,m= na()
a = na()
q = ni()
st = SegmentTree(m)
for i in range(m):
    st.update(i, a[i])

for i in range(q):
    t,x,y = na()
    if t==1:
        st.update(x-1, y)
    elif t==2:
        st.update(x-1,-y)
    else:
        print(st.query2()+1)
0