結果

問題 No.1637 Easy Tree Query
ユーザー rlangevinrlangevin
提出日時 2022-12-31 22:51:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 81,688 KB
実行使用メモリ 163,200 KB
最終ジャッジ日時 2024-11-26 22:33:35
合計ジャッジ時間 6,825 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,692 KB
testcase_01 AC 38 ms
53,488 KB
testcase_02 AC 153 ms
88,360 KB
testcase_03 AC 36 ms
53,860 KB
testcase_04 AC 113 ms
82,552 KB
testcase_05 AC 132 ms
80,780 KB
testcase_06 AC 108 ms
79,400 KB
testcase_07 AC 79 ms
76,708 KB
testcase_08 AC 100 ms
81,272 KB
testcase_09 AC 144 ms
85,592 KB
testcase_10 AC 91 ms
78,652 KB
testcase_11 AC 167 ms
86,780 KB
testcase_12 AC 155 ms
84,104 KB
testcase_13 AC 86 ms
79,216 KB
testcase_14 AC 145 ms
85,276 KB
testcase_15 AC 170 ms
86,836 KB
testcase_16 AC 166 ms
88,088 KB
testcase_17 AC 87 ms
78,652 KB
testcase_18 AC 123 ms
80,596 KB
testcase_19 AC 129 ms
81,824 KB
testcase_20 AC 148 ms
83,928 KB
testcase_21 AC 120 ms
82,540 KB
testcase_22 AC 182 ms
87,876 KB
testcase_23 AC 91 ms
79,068 KB
testcase_24 AC 115 ms
82,764 KB
testcase_25 AC 124 ms
80,372 KB
testcase_26 AC 154 ms
84,376 KB
testcase_27 AC 191 ms
87,608 KB
testcase_28 AC 110 ms
79,992 KB
testcase_29 AC 135 ms
84,012 KB
testcase_30 AC 113 ms
83,300 KB
testcase_31 AC 83 ms
75,984 KB
testcase_32 AC 103 ms
80,624 KB
testcase_33 AC 112 ms
79,040 KB
testcase_34 AC 207 ms
163,200 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