結果

問題 No.1637 Easy Tree Query
ユーザー ThetaTheta
提出日時 2024-03-08 11:44:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 975 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 56,640 KB
最終ジャッジ日時 2024-09-29 18:47:06
合計ジャッジ時間 22,003 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 1,021 ms
54,072 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 327 ms
34,584 KB
testcase_05 AC 744 ms
26,636 KB
testcase_06 AC 492 ms
23,196 KB
testcase_07 AC 248 ms
11,904 KB
testcase_08 AC 265 ms
28,012 KB
testcase_09 AC 695 ms
43,220 KB
testcase_10 AC 342 ms
20,104 KB
testcase_11 AC 896 ms
46,520 KB
testcase_12 AC 848 ms
39,008 KB
testcase_13 AC 178 ms
21,800 KB
testcase_14 AC 539 ms
43,788 KB
testcase_15 AC 902 ms
47,896 KB
testcase_16 AC 753 ms
56,224 KB
testcase_17 AC 269 ms
21,900 KB
testcase_18 AC 647 ms
26,744 KB
testcase_19 AC 671 ms
32,308 KB
testcase_20 AC 883 ms
38,220 KB
testcase_21 AC 498 ms
34,916 KB
testcase_22 AC 970 ms
56,640 KB
testcase_23 AC 261 ms
23,636 KB
testcase_24 AC 436 ms
35,184 KB
testcase_25 AC 719 ms
25,540 KB
testcase_26 AC 901 ms
40,128 KB
testcase_27 AC 1,065 ms
55,228 KB
testcase_28 AC 546 ms
24,484 KB
testcase_29 AC 713 ms
37,300 KB
testcase_30 AC 355 ms
36,976 KB
testcase_31 AC 512 ms
10,880 KB
testcase_32 AC 378 ms
26,060 KB
testcase_33 AC 656 ms
21,556 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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