結果

問題 No.1705 Mode of long array
ユーザー Kiri8128Kiri8128
提出日時 2021-10-08 23:03:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 489 ms / 3,000 ms
コード長 784 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 112,188 KB
最終ジャッジ日時 2024-07-23 06:26:03
合計ジャッジ時間 20,361 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,944 KB
testcase_01 AC 44 ms
54,568 KB
testcase_02 AC 44 ms
54,268 KB
testcase_03 AC 115 ms
77,564 KB
testcase_04 AC 100 ms
77,480 KB
testcase_05 AC 131 ms
77,872 KB
testcase_06 AC 221 ms
79,016 KB
testcase_07 AC 229 ms
79,108 KB
testcase_08 AC 231 ms
79,404 KB
testcase_09 AC 222 ms
79,380 KB
testcase_10 AC 210 ms
78,952 KB
testcase_11 AC 222 ms
79,304 KB
testcase_12 AC 216 ms
79,400 KB
testcase_13 AC 455 ms
97,296 KB
testcase_14 AC 383 ms
92,220 KB
testcase_15 AC 402 ms
89,596 KB
testcase_16 AC 434 ms
92,916 KB
testcase_17 AC 384 ms
87,788 KB
testcase_18 AC 360 ms
87,448 KB
testcase_19 AC 466 ms
97,048 KB
testcase_20 AC 391 ms
89,776 KB
testcase_21 AC 391 ms
95,912 KB
testcase_22 AC 487 ms
101,644 KB
testcase_23 AC 267 ms
91,180 KB
testcase_24 AC 277 ms
91,028 KB
testcase_25 AC 274 ms
90,940 KB
testcase_26 AC 273 ms
91,620 KB
testcase_27 AC 272 ms
91,184 KB
testcase_28 AC 273 ms
91,548 KB
testcase_29 AC 268 ms
91,172 KB
testcase_30 AC 276 ms
91,412 KB
testcase_31 AC 278 ms
91,932 KB
testcase_32 AC 288 ms
91,040 KB
testcase_33 AC 346 ms
111,924 KB
testcase_34 AC 351 ms
111,952 KB
testcase_35 AC 358 ms
111,788 KB
testcase_36 AC 339 ms
112,080 KB
testcase_37 AC 350 ms
111,724 KB
testcase_38 AC 340 ms
112,188 KB
testcase_39 AC 341 ms
112,172 KB
testcase_40 AC 349 ms
111,908 KB
testcase_41 AC 363 ms
112,156 KB
testcase_42 AC 346 ms
111,804 KB
testcase_43 AC 433 ms
90,992 KB
testcase_44 AC 452 ms
91,304 KB
testcase_45 AC 456 ms
90,976 KB
testcase_46 AC 452 ms
91,228 KB
testcase_47 AC 489 ms
90,976 KB
testcase_48 AC 485 ms
91,220 KB
testcase_49 AC 462 ms
99,564 KB
testcase_50 AC 488 ms
99,424 KB
testcase_51 AC 479 ms
99,308 KB
testcase_52 AC 475 ms
99,180 KB
testcase_53 AC 462 ms
99,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import heappush, heappop

HC = defaultdict(int)
H = []

def hpush(x):
    heappush(H, -x)
    HC[x] += 1
def hpop():
    t = -heappop(H)
    while not HC[t]:
        t = -heappop(H)
    HC[t] -= 1
    return t
def hmax():
    a = hpop()
    hpush(a)
    return a
def hdel(x):
    assert HC[x] > 0
    HC[x] -= 1

N, M = map(int, input().split())
A = [int(a) for a in input().split()]
for i, a in enumerate(A):
    hpush(a * M + i)

Q = int(input())
for _ in range(Q):
    t, x, y = map(int, input().split())
    x -= 1
    if t == 1:
        hdel(A[x] * M + x)
        A[x] += y
        hpush(A[x] * M + x)
    elif t == 2:
        hdel(A[x] * M + x)
        A[x] -= y
        hpush(A[x] * M + x)
    else:
        print(hmax() % M + 1)
0