結果

問題 No.1705 Mode of long array
ユーザー titiatitia
提出日時 2021-10-08 23:11:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 423 ms / 3,000 ms
コード長 611 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 103,424 KB
最終ジャッジ日時 2024-07-23 06:48:33
合計ジャッジ時間 18,143 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,688 KB
testcase_01 AC 44 ms
55,020 KB
testcase_02 AC 44 ms
55,668 KB
testcase_03 AC 94 ms
77,064 KB
testcase_04 AC 83 ms
74,864 KB
testcase_05 AC 107 ms
77,412 KB
testcase_06 AC 160 ms
78,080 KB
testcase_07 AC 163 ms
78,092 KB
testcase_08 AC 159 ms
78,200 KB
testcase_09 AC 163 ms
78,136 KB
testcase_10 AC 155 ms
78,212 KB
testcase_11 AC 159 ms
77,848 KB
testcase_12 AC 145 ms
77,856 KB
testcase_13 AC 350 ms
101,040 KB
testcase_14 AC 300 ms
94,288 KB
testcase_15 AC 298 ms
82,260 KB
testcase_16 AC 334 ms
85,352 KB
testcase_17 AC 286 ms
82,396 KB
testcase_18 AC 257 ms
81,748 KB
testcase_19 AC 347 ms
86,952 KB
testcase_20 AC 277 ms
83,828 KB
testcase_21 AC 316 ms
103,424 KB
testcase_22 AC 384 ms
98,912 KB
testcase_23 AC 288 ms
84,116 KB
testcase_24 AC 271 ms
83,584 KB
testcase_25 AC 267 ms
84,300 KB
testcase_26 AC 263 ms
84,816 KB
testcase_27 AC 270 ms
84,656 KB
testcase_28 AC 226 ms
83,972 KB
testcase_29 AC 225 ms
83,816 KB
testcase_30 AC 262 ms
84,408 KB
testcase_31 AC 273 ms
85,560 KB
testcase_32 AC 225 ms
84,164 KB
testcase_33 AC 337 ms
102,068 KB
testcase_34 AC 345 ms
101,548 KB
testcase_35 AC 334 ms
101,560 KB
testcase_36 AC 339 ms
101,664 KB
testcase_37 AC 336 ms
101,552 KB
testcase_38 AC 332 ms
101,656 KB
testcase_39 AC 338 ms
101,532 KB
testcase_40 AC 333 ms
101,372 KB
testcase_41 AC 334 ms
101,408 KB
testcase_42 AC 332 ms
101,948 KB
testcase_43 AC 353 ms
99,604 KB
testcase_44 AC 393 ms
100,000 KB
testcase_45 AC 395 ms
100,260 KB
testcase_46 AC 377 ms
99,896 KB
testcase_47 AC 404 ms
99,612 KB
testcase_48 AC 392 ms
99,732 KB
testcase_49 AC 405 ms
99,760 KB
testcase_50 AC 411 ms
99,852 KB
testcase_51 AC 403 ms
99,872 KB
testcase_52 AC 423 ms
99,752 KB
testcase_53 AC 415 ms
99,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import heapq

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

H=[]
C=Counter()

for i in range(M):
    a=A[i]
    C[i+1]=a
    H.append((-a,-(i+1)))

heapq.heapify(H)

#print(H)

for queries in range(Q):
    t,x,y=map(int,input().split())

    if t==1:
        C[x]+=y
        heapq.heappush(H,(-C[x],-x))
    elif t==2:
        C[x]-=y
        heapq.heappush(H,(-C[x],-x))
    else:
        while True:
            z,w=H[0]

            if C[-w]!=-z:
                heapq.heappop(H)
            else:
                break

        print(-H[0][1])
0