結果

問題 No.1637 Easy Tree Query
ユーザー rlangevinrlangevin
提出日時 2022-12-31 22:51:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 162,944 KB
最終ジャッジ日時 2024-05-05 04:41:19
合計ジャッジ時間 7,090 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 163 ms
88,320 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 115 ms
82,304 KB
testcase_05 AC 135 ms
81,040 KB
testcase_06 AC 116 ms
79,744 KB
testcase_07 AC 87 ms
76,560 KB
testcase_08 AC 107 ms
80,952 KB
testcase_09 AC 156 ms
85,760 KB
testcase_10 AC 106 ms
78,976 KB
testcase_11 AC 192 ms
86,656 KB
testcase_12 AC 163 ms
84,480 KB
testcase_13 AC 100 ms
79,232 KB
testcase_14 AC 151 ms
86,016 KB
testcase_15 AC 172 ms
87,296 KB
testcase_16 AC 177 ms
88,320 KB
testcase_17 AC 96 ms
79,232 KB
testcase_18 AC 129 ms
80,896 KB
testcase_19 AC 136 ms
81,664 KB
testcase_20 AC 167 ms
83,840 KB
testcase_21 AC 126 ms
82,944 KB
testcase_22 AC 198 ms
88,320 KB
testcase_23 AC 100 ms
79,616 KB
testcase_24 AC 126 ms
82,816 KB
testcase_25 AC 134 ms
80,512 KB
testcase_26 AC 163 ms
84,736 KB
testcase_27 AC 191 ms
87,680 KB
testcase_28 AC 120 ms
80,000 KB
testcase_29 AC 151 ms
83,456 KB
testcase_30 AC 133 ms
83,200 KB
testcase_31 AC 97 ms
75,904 KB
testcase_32 AC 115 ms
80,512 KB
testcase_33 AC 117 ms
78,848 KB
testcase_34 AC 222 ms
162,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
readline = sys.stdin.readline

def dfs(s, p=-1):
    n = 1
    for u in G[s]:
        if u == p:
            continue
        n += dfs(u, s)
    dp[s] = n
    return n

N, Q = map(int, readline().split())
G = [[] for i in range(N)]
for i in range(N - 1):
    A, B = map(int, readline().split())
    A, B = A - 1, B - 1
    G[A].append(B)
    G[B].append(A)
    
dp = [0] * N
dfs(0)
ans = 0
for _ in range(Q):
    p, x = map(int, readline().split())
    p -= 1
    ans += dp[p] * x
    print(ans)
0