結果

問題 No.1637 Easy Tree Query
ユーザー ああいいああいい
提出日時 2021-12-04 12:40:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,000 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 37,504 KB
最終ジャッジ日時 2024-07-06 17:56:54
合計ジャッジ時間 22,035 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 934 ms
35,072 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 357 ms
21,632 KB
testcase_05 AC 613 ms
25,472 KB
testcase_06 AC 425 ms
20,736 KB
testcase_07 AC 197 ms
13,952 KB
testcase_08 AC 288 ms
19,328 KB
testcase_09 AC 669 ms
29,568 KB
testcase_10 AC 302 ms
18,176 KB
testcase_11 AC 835 ms
33,280 KB
testcase_12 AC 763 ms
30,336 KB
testcase_13 AC 186 ms
16,000 KB
testcase_14 AC 536 ms
27,648 KB
testcase_15 AC 818 ms
33,408 KB
testcase_16 AC 742 ms
32,768 KB
testcase_17 AC 240 ms
17,024 KB
testcase_18 AC 590 ms
24,832 KB
testcase_19 AC 592 ms
25,856 KB
testcase_20 AC 775 ms
30,720 KB
testcase_21 AC 488 ms
24,192 KB
testcase_22 AC 938 ms
36,480 KB
testcase_23 AC 253 ms
17,792 KB
testcase_24 AC 417 ms
23,424 KB
testcase_25 AC 599 ms
25,216 KB
testcase_26 AC 820 ms
31,616 KB
testcase_27 AC 1,000 ms
36,992 KB
testcase_28 AC 460 ms
22,272 KB
testcase_29 AC 639 ms
28,032 KB
testcase_30 AC 367 ms
22,784 KB
testcase_31 AC 382 ms
15,744 KB
testcase_32 AC 351 ms
20,608 KB
testcase_33 AC 542 ms
22,784 KB
testcase_34 AC 543 ms
37,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = list(map(int,input().split()))
a = [0] * (N-1)
b = [0] * (N-1)
for i in range(N - 1):
    a[i],b[i] = list(map(int,input().split()))
p = [0] * Q
x = [0] * Q
for i in range(Q):
    p[i],x[i] = list(map(int,input().split()))
tree = [[] for _ in range(N+1)]
for i in range(N-1):
    tree[a[i]].append(b[i])
    tree[b[i]].append(a[i])
sub = [1] * (N+1)
"""
def tansaku(now = 1,parent = 0):
    if len(tree[now]) == 1:
        return 1
    else:
        for i in tree[now]:
            if i != parent:
                sub[now] += tansaku(i,now)
        return sub[now]
tansaku()
"""
#再帰1000回しかしてくれない
q = []
flags = [False] * (N+1)
q.append((1,0))
while len(q):
    now,parent = q.pop()
    if flags[now]:
        for i in tree[now]:
            if i != parent:
                sub[now] += sub[i]
    else:
        flags[now] = True
        q.append((now,parent))
        for i in tree[now]:
            if i != parent:
                q.append((i,now))
    
_sum = 0
for i in range(Q):
    _sum += sub[p[i]] * x[i]
    print(_sum)
    
0