結果

問題 No.1637 Easy Tree Query
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-08-06 23:31:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 97,132 KB
最終ジャッジ日時 2024-09-17 04:06:27
合計ジャッジ時間 13,589 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,864 KB
testcase_01 AC 43 ms
54,856 KB
testcase_02 AC 434 ms
97,132 KB
testcase_03 AC 39 ms
54,728 KB
testcase_04 AC 230 ms
88,164 KB
testcase_05 AC 399 ms
84,472 KB
testcase_06 AC 288 ms
81,764 KB
testcase_07 AC 201 ms
77,916 KB
testcase_08 AC 206 ms
84,744 KB
testcase_09 AC 392 ms
91,772 KB
testcase_10 AC 237 ms
81,180 KB
testcase_11 AC 462 ms
94,072 KB
testcase_12 AC 445 ms
90,100 KB
testcase_13 AC 167 ms
80,924 KB
testcase_14 AC 314 ms
92,256 KB
testcase_15 AC 449 ms
94,368 KB
testcase_16 AC 421 ms
97,008 KB
testcase_17 AC 203 ms
81,424 KB
testcase_18 AC 379 ms
84,536 KB
testcase_19 AC 371 ms
85,356 KB
testcase_20 AC 442 ms
88,740 KB
testcase_21 AC 294 ms
87,980 KB
testcase_22 AC 505 ms
97,024 KB
testcase_23 AC 201 ms
82,016 KB
testcase_24 AC 274 ms
87,364 KB
testcase_25 AC 396 ms
83,720 KB
testcase_26 AC 457 ms
90,548 KB
testcase_27 AC 536 ms
94,388 KB
testcase_28 AC 314 ms
83,100 KB
testcase_29 AC 380 ms
88,424 KB
testcase_30 AC 236 ms
88,224 KB
testcase_31 AC 275 ms
77,132 KB
testcase_32 AC 246 ms
83,636 KB
testcase_33 AC 362 ms
81,276 KB
testcase_34 AC 179 ms
96,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,Q = map(int,input().split())
e = [[] for i in range(n)]
for _ in range(n-1):
    a,b = [int(x)-1 for x in input().split()]
    e[a].append(b)
    e[b].append(a)

size = [1]*n

q = deque([0])
dis = [n]*n
dis[0] = 0
topo = []
while q:
    now = q.pop()
    topo.append(now)
    for nex in e[now]:
        if dis[nex] > dis[now]+1:
            q.append(nex)
            dis[nex] = dis[now]+1

for now in topo[::-1]:
    for nex in e[now]:
        if dis[nex] > dis[now]:
            size[now] += size[nex]

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