結果

問題 No.1637 Easy Tree Query
ユーザー lloyzlloyz
提出日時 2021-12-24 23:33:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,189 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 51,096 KB
最終ジャッジ日時 2024-09-19 22:51:04
合計ジャッジ時間 25,828 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 1,170 ms
32,400 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 342 ms
21,688 KB
testcase_05 AC 854 ms
18,096 KB
testcase_06 AC 571 ms
16,556 KB
testcase_07 AC 289 ms
11,008 KB
testcase_08 AC 281 ms
18,740 KB
testcase_09 AC 752 ms
25,668 KB
testcase_10 AC 406 ms
14,888 KB
testcase_11 AC 1,006 ms
27,204 KB
testcase_12 AC 982 ms
23,996 KB
testcase_13 AC 197 ms
16,040 KB
testcase_14 AC 550 ms
26,184 KB
testcase_15 AC 996 ms
27,844 KB
testcase_16 AC 793 ms
32,260 KB
testcase_17 AC 303 ms
16,040 KB
testcase_18 AC 801 ms
18,096 KB
testcase_19 AC 808 ms
21,552 KB
testcase_20 AC 979 ms
23,616 KB
testcase_21 AC 556 ms
21,952 KB
testcase_22 AC 1,094 ms
32,316 KB
testcase_23 AC 307 ms
16,688 KB
testcase_24 AC 468 ms
21,956 KB
testcase_25 AC 844 ms
17,464 KB
testcase_26 AC 1,028 ms
24,520 KB
testcase_27 AC 1,189 ms
32,424 KB
testcase_28 AC 637 ms
17,240 KB
testcase_29 AC 830 ms
23,232 KB
testcase_30 AC 349 ms
22,980 KB
testcase_31 AC 643 ms
10,752 KB
testcase_32 AC 438 ms
17,972 KB
testcase_33 AC 801 ms
16,300 KB
testcase_34 AC 523 ms
51,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
sys.setrecursionlimit(10**6)

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

V = [0 for _ in range(n)]
def dfs(curr, prev):
    V[curr] += 1
    for np in edge[curr]:
        if np == prev:
            continue
        dfs(np, curr)
        V[curr] += V[np]
dfs(0, -1)

ans = 0
for _ in range(q):
    p, x = map(int, input().split())
    p -= 1
    ans += x * V[p]
    print(ans)
0