結果

問題 No.1637 Easy Tree Query
ユーザー hiragnhiragn
提出日時 2022-11-29 23:25:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 746 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-10-07 08:58:00
合計ジャッジ時間 16,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 725 ms
40,984 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 252 ms
23,116 KB
testcase_05 AC 460 ms
25,792 KB
testcase_06 AC 318 ms
21,560 KB
testcase_07 AC 151 ms
14,336 KB
testcase_08 AC 219 ms
19,520 KB
testcase_09 AC 493 ms
30,420 KB
testcase_10 AC 230 ms
18,232 KB
testcase_11 AC 604 ms
34,004 KB
testcase_12 AC 548 ms
31,436 KB
testcase_13 AC 138 ms
16,696 KB
testcase_14 AC 391 ms
28,244 KB
testcase_15 AC 617 ms
33,744 KB
testcase_16 AC 548 ms
35,424 KB
testcase_17 AC 183 ms
17,848 KB
testcase_18 AC 443 ms
25,152 KB
testcase_19 AC 443 ms
27,208 KB
testcase_20 AC 566 ms
31,568 KB
testcase_21 AC 355 ms
25,416 KB
testcase_22 AC 705 ms
39,272 KB
testcase_23 AC 216 ms
18,244 KB
testcase_24 AC 369 ms
24,520 KB
testcase_25 AC 525 ms
25,664 KB
testcase_26 AC 599 ms
32,720 KB
testcase_27 AC 746 ms
39,648 KB
testcase_28 AC 363 ms
22,460 KB
testcase_29 AC 484 ms
28,964 KB
testcase_30 AC 280 ms
23,884 KB
testcase_31 AC 319 ms
18,048 KB
testcase_32 AC 273 ms
20,932 KB
testcase_33 AC 433 ms
23,352 KB
testcase_34 AC 442 ms
54,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from sys import setrecursionlimit


def main():
    setrecursionlimit(10 ** 6)

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

    visited = [0] * n  # 0 = False
    subnodes = [0] * n

    def dfs(i):
        visited[i] = True
        res = 1
        for j in adj[i]:
            if visited[j]:
                continue
            res += dfs(j)
        subnodes[i] = res
        return res

    dfs(0)

    ans = []
    tmp = 0
    for _ in range(q):
        p, x = map(int, input().split())
        tmp += subnodes[p - 1] * x
        ans.append(tmp)
    print(*ans, sep='\n')


if __name__ == "__main__":
    main()
0