結果

問題 No.1705 Mode of long array
ユーザー ああいいああいい
提出日時 2021-12-28 17:23:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,496 ms / 3,000 ms
コード長 1,056 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,584 KB
最終ジャッジ日時 2024-10-02 10:16:00
合計ジャッジ時間 44,543 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 37 ms
10,752 KB
testcase_04 AC 36 ms
11,008 KB
testcase_05 AC 40 ms
11,008 KB
testcase_06 AC 72 ms
11,008 KB
testcase_07 AC 89 ms
11,008 KB
testcase_08 AC 81 ms
10,880 KB
testcase_09 AC 75 ms
10,880 KB
testcase_10 AC 71 ms
10,880 KB
testcase_11 AC 77 ms
11,136 KB
testcase_12 AC 79 ms
11,136 KB
testcase_13 AC 985 ms
41,264 KB
testcase_14 AC 703 ms
26,812 KB
testcase_15 AC 703 ms
14,848 KB
testcase_16 AC 834 ms
15,360 KB
testcase_17 AC 620 ms
15,104 KB
testcase_18 AC 509 ms
14,976 KB
testcase_19 AC 941 ms
20,624 KB
testcase_20 AC 602 ms
19,084 KB
testcase_21 AC 786 ms
40,284 KB
testcase_22 AC 1,147 ms
42,620 KB
testcase_23 AC 547 ms
10,752 KB
testcase_24 AC 531 ms
10,880 KB
testcase_25 AC 546 ms
10,752 KB
testcase_26 AC 547 ms
10,880 KB
testcase_27 AC 547 ms
10,880 KB
testcase_28 AC 545 ms
10,752 KB
testcase_29 AC 545 ms
10,880 KB
testcase_30 AC 540 ms
10,752 KB
testcase_31 AC 558 ms
10,752 KB
testcase_32 AC 550 ms
10,880 KB
testcase_33 AC 1,459 ms
46,452 KB
testcase_34 AC 1,469 ms
46,512 KB
testcase_35 AC 1,455 ms
46,448 KB
testcase_36 AC 1,467 ms
46,452 KB
testcase_37 AC 1,467 ms
46,452 KB
testcase_38 AC 1,496 ms
46,384 KB
testcase_39 AC 1,483 ms
46,584 KB
testcase_40 AC 1,471 ms
46,384 KB
testcase_41 AC 1,480 ms
46,576 KB
testcase_42 AC 1,472 ms
46,576 KB
testcase_43 AC 885 ms
41,712 KB
testcase_44 AC 908 ms
41,648 KB
testcase_45 AC 909 ms
41,680 KB
testcase_46 AC 893 ms
41,848 KB
testcase_47 AC 871 ms
41,840 KB
testcase_48 AC 893 ms
41,840 KB
testcase_49 AC 1,333 ms
42,996 KB
testcase_50 AC 1,307 ms
43,120 KB
testcase_51 AC 1,313 ms
43,124 KB
testcase_52 AC 1,314 ms
43,124 KB
testcase_53 AC 1,299 ms
42,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

n = 1
while n < M:
    n <<= 1
dat = [[0] * 2 for _ in range(2 * n - 1)]
for i in range(M):
    j = i + n - 1
    #dat[j] = [a[i],i + 1]
    dat[j][0] = a[i]
    dat[j][1] = i + 1

def add(i,x):
    j = i - 1 + n - 1
    dat[j][0] += x
    while j >= 0:
        j = (j - 1) // 2
        k1 = j * 2 + 1
        k2 = j * 2 + 2
        if dat[k1][0] <= dat[k2][0]:
            dat[j][0] = dat[k2][0]
            dat[j][1] = dat[k2][1]
        else:
            dat[j][0] = dat[k1][0]
            dat[j][1] = dat[k1][1]
            
def make():
    for i in reversed(range(n-1)):
        k1 = i * 2 + 1
        k2 = i * 2 + 2
        if dat[k1][0] <= dat[k2][0]:
            k = k2
        else:
            k = k1
        dat[i][0] = dat[k][0]
        dat[i][1] = dat[k][1]

def get():
    return dat[0][1]

make()
Q = int(input())
for _ in range(Q):
    t,x,y = map(int,input().split())
    if t == 1:
        add(x,y)
    elif t == 2:
        add(x,-y)
    else:
        print(get())

    
0