結果

問題 No.1705 Mode of long array
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-08 23:06:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 374 ms / 3,000 ms
コード長 506 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 102,972 KB
最終ジャッジ日時 2024-07-23 06:35:56
合計ジャッジ時間 13,989 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,152 KB
testcase_01 AC 38 ms
53,012 KB
testcase_02 AC 39 ms
53,376 KB
testcase_03 AC 85 ms
76,864 KB
testcase_04 AC 84 ms
77,644 KB
testcase_05 AC 93 ms
77,060 KB
testcase_06 AC 118 ms
77,540 KB
testcase_07 AC 118 ms
78,936 KB
testcase_08 AC 121 ms
78,488 KB
testcase_09 AC 113 ms
78,404 KB
testcase_10 AC 114 ms
78,108 KB
testcase_11 AC 116 ms
78,308 KB
testcase_12 AC 121 ms
78,604 KB
testcase_13 AC 222 ms
93,088 KB
testcase_14 AC 186 ms
89,328 KB
testcase_15 AC 197 ms
89,080 KB
testcase_16 AC 216 ms
91,888 KB
testcase_17 AC 189 ms
87,572 KB
testcase_18 AC 168 ms
86,140 KB
testcase_19 AC 231 ms
94,492 KB
testcase_20 AC 181 ms
87,620 KB
testcase_21 AC 198 ms
90,144 KB
testcase_22 AC 247 ms
96,796 KB
testcase_23 AC 207 ms
92,396 KB
testcase_24 AC 213 ms
92,476 KB
testcase_25 AC 211 ms
92,500 KB
testcase_26 AC 209 ms
92,740 KB
testcase_27 AC 209 ms
92,372 KB
testcase_28 AC 211 ms
92,480 KB
testcase_29 AC 209 ms
92,384 KB
testcase_30 AC 216 ms
92,320 KB
testcase_31 AC 215 ms
92,264 KB
testcase_32 AC 213 ms
92,680 KB
testcase_33 AC 280 ms
102,756 KB
testcase_34 AC 282 ms
102,876 KB
testcase_35 AC 279 ms
102,360 KB
testcase_36 AC 280 ms
102,760 KB
testcase_37 AC 285 ms
102,236 KB
testcase_38 AC 281 ms
102,900 KB
testcase_39 AC 281 ms
101,236 KB
testcase_40 AC 281 ms
102,972 KB
testcase_41 AC 282 ms
102,888 KB
testcase_42 AC 280 ms
102,348 KB
testcase_43 AC 233 ms
93,628 KB
testcase_44 AC 235 ms
93,788 KB
testcase_45 AC 240 ms
93,860 KB
testcase_46 AC 241 ms
93,628 KB
testcase_47 AC 243 ms
93,784 KB
testcase_48 AC 239 ms
93,944 KB
testcase_49 AC 358 ms
99,700 KB
testcase_50 AC 353 ms
99,636 KB
testcase_51 AC 345 ms
100,076 KB
testcase_52 AC 374 ms
100,220 KB
testcase_53 AC 358 ms
100,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

n,m = map(int,input().split())
A = list(map(int,input().split()))
num = [0]+A[:]
h = []
for i,a in enumerate(A):
    heappush(h,(-a,-i-1))

q = int(input())
Q = [list(map(int,input().split())) for i in range(q)]
for t,x,y in Q:
    if t == 1:
        num[x] += y
        heappush(h,(-num[x],-x))

    if t == 2:
        num[x] -= y
        heappush(h,(-num[x],-x))

    if t == 3:
        while num[-h[0][1]] != -h[0][0]:
            heappop(h)
        print(-h[0][1])
0