結果

問題 No.1637 Easy Tree Query
ユーザー hir355hir355
提出日時 2021-08-06 21:25:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 497 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 97,280 KB
最終ジャッジ日時 2024-09-17 03:32:22
合計ジャッジ時間 12,686 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 407 ms
96,600 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 200 ms
86,528 KB
testcase_05 AC 364 ms
83,984 KB
testcase_06 AC 273 ms
81,152 KB
testcase_07 AC 190 ms
76,976 KB
testcase_08 AC 176 ms
84,480 KB
testcase_09 AC 336 ms
91,392 KB
testcase_10 AC 224 ms
80,344 KB
testcase_11 AC 426 ms
93,416 KB
testcase_12 AC 410 ms
88,704 KB
testcase_13 AC 154 ms
80,640 KB
testcase_14 AC 271 ms
91,728 KB
testcase_15 AC 400 ms
93,976 KB
testcase_16 AC 358 ms
97,280 KB
testcase_17 AC 184 ms
80,512 KB
testcase_18 AC 347 ms
83,840 KB
testcase_19 AC 352 ms
84,864 KB
testcase_20 AC 424 ms
88,320 KB
testcase_21 AC 266 ms
86,272 KB
testcase_22 AC 453 ms
96,896 KB
testcase_23 AC 183 ms
81,968 KB
testcase_24 AC 253 ms
86,528 KB
testcase_25 AC 367 ms
82,928 KB
testcase_26 AC 449 ms
90,480 KB
testcase_27 AC 497 ms
94,688 KB
testcase_28 AC 295 ms
82,176 KB
testcase_29 AC 362 ms
88,072 KB
testcase_30 AC 209 ms
87,424 KB
testcase_31 AC 277 ms
76,032 KB
testcase_32 AC 230 ms
83,328 KB
testcase_33 AC 349 ms
80,620 KB
testcase_34 AC 155 ms
95,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def tree_dfs(g, root=0):
    s = [root]
    d = [1] * len(g)
    order = []
    while s:
        p = s.pop()
        d[p] = 0
        order.append(p)
        for node in g[p]:
            if d[node]:
                s.append(node)
    return order

n, q = map(int, input().split())
g = [[] for _ in range(n)]
for _ in range(n - 1):
    a, b = map(int, input().split())
    g[a - 1].append(b - 1)
    g[b - 1].append(a - 1)

order = tree_dfs(g)
d = [0] * n
d[0] = 0
for v in order[::-1]:
    d[v] = 1
    for node in g[v]:
        d[v] += d[node]
ans = 0
for i in range(q):
    p, x = map(int, input().split())
    ans += d[p - 1] * x
    print(ans)
0