結果

問題 No.1705 Mode of long array
ユーザー mahiro72mahiro72
提出日時 2021-10-23 17:39:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 3,000 ms
コード長 510 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 103,508 KB
最終ジャッジ日時 2024-09-25 08:50:54
合計ジャッジ時間 15,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,336 KB
testcase_01 AC 39 ms
53,212 KB
testcase_02 AC 39 ms
53,944 KB
testcase_03 AC 83 ms
76,440 KB
testcase_04 AC 76 ms
75,008 KB
testcase_05 AC 90 ms
76,920 KB
testcase_06 AC 106 ms
77,096 KB
testcase_07 AC 115 ms
78,152 KB
testcase_08 AC 114 ms
78,252 KB
testcase_09 AC 106 ms
77,720 KB
testcase_10 AC 109 ms
78,140 KB
testcase_11 AC 115 ms
77,708 KB
testcase_12 AC 114 ms
78,836 KB
testcase_13 AC 214 ms
94,240 KB
testcase_14 AC 175 ms
89,516 KB
testcase_15 AC 188 ms
89,292 KB
testcase_16 AC 203 ms
92,456 KB
testcase_17 AC 172 ms
87,920 KB
testcase_18 AC 166 ms
86,144 KB
testcase_19 AC 216 ms
95,228 KB
testcase_20 AC 167 ms
88,168 KB
testcase_21 AC 189 ms
90,764 KB
testcase_22 AC 245 ms
97,244 KB
testcase_23 AC 200 ms
92,880 KB
testcase_24 AC 204 ms
92,976 KB
testcase_25 AC 197 ms
92,708 KB
testcase_26 AC 198 ms
93,000 KB
testcase_27 AC 195 ms
93,004 KB
testcase_28 AC 197 ms
93,136 KB
testcase_29 AC 200 ms
92,872 KB
testcase_30 AC 207 ms
92,748 KB
testcase_31 AC 213 ms
93,008 KB
testcase_32 AC 195 ms
93,260 KB
testcase_33 AC 265 ms
103,508 KB
testcase_34 AC 261 ms
102,984 KB
testcase_35 AC 273 ms
102,848 KB
testcase_36 AC 264 ms
103,236 KB
testcase_37 AC 276 ms
102,544 KB
testcase_38 AC 273 ms
103,360 KB
testcase_39 AC 271 ms
103,120 KB
testcase_40 AC 260 ms
103,088 KB
testcase_41 AC 258 ms
103,384 KB
testcase_42 AC 275 ms
102,832 KB
testcase_43 AC 218 ms
94,308 KB
testcase_44 AC 214 ms
94,312 KB
testcase_45 AC 227 ms
94,032 KB
testcase_46 AC 231 ms
94,288 KB
testcase_47 AC 233 ms
94,280 KB
testcase_48 AC 225 ms
94,432 KB
testcase_49 AC 341 ms
100,964 KB
testcase_50 AC 335 ms
100,712 KB
testcase_51 AC 327 ms
100,328 KB
testcase_52 AC 361 ms
100,700 KB
testcase_53 AC 336 ms
100,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop,heappush

N,M = map(int,input().split())
A = list(map(int,input().split()))

hq = []
for i,a in enumerate(A):
    heappush(hq,(-a,-i-1))
num = [0]+A[:]


q = int(input())
Q = [tuple(map(int,input().split()))for _ in range(q)]
for t,x,y in Q:
    if t==1:
        num[x]+=y
        heappush(hq,(-num[x],-x))
    elif t==2:
        num[x]-=y
        heappush(hq,(-num[x],-x))
    else:
        while num[-hq[0][1]]!=-hq[0][0]:
            heappop(hq)
        print(-hq[0][1])

0