結果

問題 No.1637 Easy Tree Query
ユーザー puznekopuzneko
提出日時 2021-12-02 23:22:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 789 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 148,900 KB
最終ジャッジ日時 2024-07-05 02:15:04
合計ジャッジ時間 9,127 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 35 ms
53,252 KB
testcase_02 AC 221 ms
148,900 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 133 ms
103,756 KB
testcase_05 AC 168 ms
123,928 KB
testcase_06 AC 141 ms
111,332 KB
testcase_07 AC 95 ms
89,472 KB
testcase_08 AC 124 ms
97,616 KB
testcase_09 AC 186 ms
124,416 KB
testcase_10 AC 121 ms
100,736 KB
testcase_11 AC 221 ms
133,120 KB
testcase_12 AC 205 ms
136,448 KB
testcase_13 AC 102 ms
88,664 KB
testcase_14 AC 175 ms
115,328 KB
testcase_15 AC 238 ms
134,580 KB
testcase_16 AC 205 ms
124,708 KB
testcase_17 AC 106 ms
93,440 KB
testcase_18 AC 163 ms
124,204 KB
testcase_19 AC 172 ms
123,904 KB
testcase_20 AC 219 ms
134,912 KB
testcase_21 AC 151 ms
112,128 KB
testcase_22 AC 261 ms
134,236 KB
testcase_23 AC 116 ms
96,332 KB
testcase_24 AC 142 ms
109,056 KB
testcase_25 AC 160 ms
124,372 KB
testcase_26 AC 230 ms
132,992 KB
testcase_27 AC 279 ms
143,032 KB
testcase_28 AC 155 ms
114,944 KB
testcase_29 AC 188 ms
124,800 KB
testcase_30 AC 150 ms
103,808 KB
testcase_31 AC 112 ms
108,808 KB
testcase_32 AC 137 ms
105,472 KB
testcase_33 AC 162 ms
123,008 KB
testcase_34 AC 124 ms
116,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
n, q, *indata = map(int, stdin.read().split())
offset = 0
g = [[] for i in range(n+1)]
for i in range(n-1):
    s, t = indata[offset + 2*i],indata[offset + 2*i+1]
    g[s].append(t)
    g[t].append(s)

dp = [0 for i in range(n+1)]
check = [0 for i in range(n+1)]
que = [(1,0)]
while que:
    now, inout = que.pop()
    if inout == 0:
        check[now] = 1
        que.append((now,1))
        for i in g[now]:
            if check[i] == 0:
                que.append((i,0))
    else:
        check[now] = 2
        dp[now] = 1
        for i in g[now]:
            if check[i] == 2:
                dp[now] += dp[i]

offset = (n-1) * 2
ans = 0
for i in range(q):
    p, x = indata[offset + 2*i],indata[offset + 2*i+1]
    ans += x * dp[p]
    print("{}".format(ans))

0