結果

問題 No.2311 [Cherry 5th Tune] Cherry Month
ユーザー KazunKazun
提出日時 2023-02-20 19:39:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,176 bytes
コンパイル時間 1,030 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 420,020 KB
最終ジャッジ日時 2024-12-15 19:02:13
合計ジャッジ時間 187,839 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,700 KB
testcase_01 AC 39 ms
57,856 KB
testcase_02 TLE -
testcase_03 AC 320 ms
285,124 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 304 ms
106,348 KB
testcase_08 AC 455 ms
124,104 KB
testcase_09 AC 445 ms
289,780 KB
testcase_10 TLE -
testcase_11 AC 521 ms
127,956 KB
testcase_12 TLE -
testcase_13 AC 502 ms
252,764 KB
testcase_14 TLE -
testcase_15 AC 560 ms
129,780 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 520 ms
302,780 KB
testcase_20 AC 485 ms
420,020 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 519 ms
127,652 KB
testcase_24 AC 508 ms
228,816 KB
testcase_25 AC 367 ms
116,948 KB
testcase_26 AC 549 ms
132,676 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 3,053 ms
243,168 KB
testcase_44 AC 389 ms
120,504 KB
testcase_45 TLE -
testcase_46 AC 463 ms
122,028 KB
testcase_47 AC 390 ms
114,736 KB
testcase_48 AC 308 ms
114,296 KB
testcase_49 AC 412 ms
122,600 KB
testcase_50 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N=int(input())
    A=[-1]+list(map(int,input().split()))

    T=int(input())
    F=[0]*(T+1); X=[0]*(T+1); Y=[0]*(T+1)
    for t in range(1,T+1):
        F[t],X[t],Y[t]=map(int,input().split())

    Question=[[] for _ in range(T+1)]
    Q=int(input())
    for q in range(Q):
        S,I=map(int,input().split())
        Question[S].append((q,I))

    G=[[i] for i in range(N+1)]
    Ans=[0]*Q
    for t in range(T+1):
        if F[t]==1:
            G[X[t]].append(Y[t])
            G[Y[t]].append(X[t])
        elif F[t]==2:
            A[X[t]]-=Y[t]
        elif F[t]==3:
            for Z in G[X[t]]:
                A[Z]-=Y[t]
        elif F[t]==4:
            stack=[X[t]]
            seen={X[t]}

            while stack:
                Z=stack.pop()

                A[Z]-=Y[t]
                for W in G[Z]:
                    if W not in seen:
                        seen.add(W)
                        stack.append(W)

        for q,I in Question[t]:
            Ans[q]=max(0, A[I])
    return Ans

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

write("\n".join(map(str,solve())))
0