結果

問題 No.1637 Easy Tree Query
ユーザー ThetaTheta
提出日時 2024-10-01 16:58:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 976 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 56,904 KB
最終ジャッジ日時 2024-10-01 16:59:00
合計ジャッジ時間 26,008 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 1,093 ms
54,120 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 405 ms
34,604 KB
testcase_05 AC 817 ms
26,892 KB
testcase_06 AC 549 ms
23,324 KB
testcase_07 AC 267 ms
11,904 KB
testcase_08 AC 291 ms
28,264 KB
testcase_09 AC 793 ms
43,348 KB
testcase_10 AC 371 ms
20,088 KB
testcase_11 AC 1,009 ms
46,400 KB
testcase_12 AC 932 ms
38,880 KB
testcase_13 AC 208 ms
21,932 KB
testcase_14 AC 606 ms
43,916 KB
testcase_15 AC 952 ms
48,020 KB
testcase_16 AC 849 ms
56,376 KB
testcase_17 AC 283 ms
21,904 KB
testcase_18 AC 726 ms
26,744 KB
testcase_19 AC 777 ms
32,180 KB
testcase_20 AC 985 ms
38,224 KB
testcase_21 AC 556 ms
34,924 KB
testcase_22 AC 1,145 ms
56,904 KB
testcase_23 AC 288 ms
23,764 KB
testcase_24 AC 526 ms
35,180 KB
testcase_25 AC 775 ms
25,664 KB
testcase_26 AC 1,029 ms
40,380 KB
testcase_27 AC 1,244 ms
55,484 KB
testcase_28 AC 609 ms
24,616 KB
testcase_29 AC 802 ms
37,304 KB
testcase_30 AC 428 ms
36,980 KB
testcase_31 AC 556 ms
11,008 KB
testcase_32 AC 426 ms
26,188 KB
testcase_33 AC 763 ms
21,556 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache
from math import inf
import sys
sys.setrecursionlimit(5000000)


def printe(*args, end="\n", **kwargs):
    print(*args, end=end, file=sys.stderr, **kwargs)


def main():
    N, Q = map(int, input().split())
    tree = [set() for _ in range(N)]
    for _ in range(N - 1):
        a, b = map(lambda n: int(n) - 1, input().split())
        tree[a].add(b)
        tree[b].add(a)
    tree_size = [inf for _ in range(N)]

    @cache
    def dfs_size(start_idx: int, parent: int = -1) -> int:
        cur_size = 1
        for neighbor in tree[start_idx]:
            if neighbor == parent:
                continue
            cur_size += dfs_size(neighbor, start_idx)
        tree_size[start_idx] = cur_size
        return cur_size

    dfs_size(0)

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


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