結果

問題 No.1637 Easy Tree Query
ユーザー ThetaTheta
提出日時 2024-03-08 11:43:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 945 bytes
コンパイル時間 660 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 56,764 KB
最終ジャッジ日時 2024-09-29 18:46:20
合計ジャッジ時間 24,868 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 1,045 ms
54,232 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 393 ms
34,464 KB
testcase_05 AC 804 ms
26,748 KB
testcase_06 AC 545 ms
23,312 KB
testcase_07 AC 268 ms
11,904 KB
testcase_08 AC 261 ms
28,120 KB
testcase_09 AC 794 ms
43,204 KB
testcase_10 AC 353 ms
20,068 KB
testcase_11 AC 1,043 ms
46,392 KB
testcase_12 AC 984 ms
38,872 KB
testcase_13 AC 187 ms
21,920 KB
testcase_14 AC 552 ms
43,900 KB
testcase_15 AC 931 ms
47,872 KB
testcase_16 AC 786 ms
56,212 KB
testcase_17 AC 271 ms
21,884 KB
testcase_18 AC 664 ms
26,860 KB
testcase_19 AC 692 ms
32,164 KB
testcase_20 AC 894 ms
38,208 KB
testcase_21 AC 518 ms
34,944 KB
testcase_22 AC 1,050 ms
56,764 KB
testcase_23 AC 262 ms
23,628 KB
testcase_24 AC 469 ms
35,112 KB
testcase_25 AC 730 ms
25,656 KB
testcase_26 AC 973 ms
40,244 KB
testcase_27 AC 1,205 ms
55,420 KB
testcase_28 AC 608 ms
24,604 KB
testcase_29 AC 819 ms
37,160 KB
testcase_30 AC 419 ms
36,968 KB
testcase_31 AC 566 ms
11,136 KB
testcase_32 AC 422 ms
26,048 KB
testcase_33 AC 633 ms
21,548 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache
from math import inf
import sys


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