結果

問題 No.1637 Easy Tree Query
ユーザー yvay5cqeyvay5cqe
提出日時 2021-08-18 21:28:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 988 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 61,056 KB
最終ジャッジ日時 2024-10-11 21:26:07
合計ジャッジ時間 21,652 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 906 ms
51,456 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 332 ms
27,776 KB
testcase_05 AC 632 ms
34,816 KB
testcase_06 AC 433 ms
27,136 KB
testcase_07 AC 202 ms
16,384 KB
testcase_08 AC 264 ms
24,192 KB
testcase_09 AC 650 ms
40,576 KB
testcase_10 AC 300 ms
22,912 KB
testcase_11 AC 816 ms
46,848 KB
testcase_12 AC 751 ms
42,240 KB
testcase_13 AC 178 ms
19,072 KB
testcase_14 AC 513 ms
36,992 KB
testcase_15 AC 799 ms
46,720 KB
testcase_16 AC 700 ms
45,312 KB
testcase_17 AC 238 ms
20,992 KB
testcase_18 AC 586 ms
33,664 KB
testcase_19 AC 606 ms
35,200 KB
testcase_20 AC 782 ms
42,752 KB
testcase_21 AC 469 ms
32,000 KB
testcase_22 AC 907 ms
51,712 KB
testcase_23 AC 250 ms
22,016 KB
testcase_24 AC 406 ms
30,464 KB
testcase_25 AC 635 ms
34,048 KB
testcase_26 AC 818 ms
44,288 KB
testcase_27 AC 988 ms
52,480 KB
testcase_28 AC 478 ms
29,440 KB
testcase_29 AC 654 ms
38,400 KB
testcase_30 AC 349 ms
29,440 KB
testcase_31 AC 425 ms
20,736 KB
testcase_32 AC 363 ms
26,240 KB
testcase_33 AC 571 ms
30,464 KB
testcase_34 AC 501 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
N, Q = map(int, input().split())
ab = [tuple(map(int, input().split())) for _ in range(N-1)]
qx = [tuple(map(int, input().split())) for _ in range(Q)]

g = [[] for _ in range(N)]

for a, b in ab:
    g[a-1].append(b-1)
    g[b-1].append(a-1)

cnts = [0] * N


def dfs(now, prev):
    cnt = 1
    for nx in g[now]:
        if nx == prev:
            continue
        cnt += dfs(nx, now)
    cnts[now] = cnt
    return cnt


dfs(0, -1)

ans = 0
for q, x in qx:
    ans += cnts[q-1] * x
    print(ans)
0