結果

問題 No.1637 Easy Tree Query
ユーザー ThetaTheta
提出日時 2024-10-01 17:11:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,180 ms / 2,000 ms
コード長 1,057 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 48,000 KB
最終ジャッジ日時 2024-10-01 17:12:04
合計ジャッジ時間 24,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 1,094 ms
41,088 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 386 ms
27,904 KB
testcase_05 AC 804 ms
23,168 KB
testcase_06 AC 555 ms
19,968 KB
testcase_07 AC 261 ms
11,520 KB
testcase_08 AC 293 ms
24,320 KB
testcase_09 AC 772 ms
35,968 KB
testcase_10 AC 384 ms
18,048 KB
testcase_11 AC 993 ms
38,784 KB
testcase_12 AC 927 ms
32,384 KB
testcase_13 AC 202 ms
18,560 KB
testcase_14 AC 562 ms
36,480 KB
testcase_15 AC 966 ms
39,808 KB
testcase_16 AC 831 ms
43,136 KB
testcase_17 AC 286 ms
18,688 KB
testcase_18 AC 743 ms
23,168 KB
testcase_19 AC 775 ms
25,728 KB
testcase_20 AC 954 ms
31,616 KB
testcase_21 AC 541 ms
28,416 KB
testcase_22 AC 1,089 ms
43,776 KB
testcase_23 AC 292 ms
20,224 KB
testcase_24 AC 477 ms
28,544 KB
testcase_25 AC 806 ms
22,272 KB
testcase_26 AC 1,004 ms
33,536 KB
testcase_27 AC 1,180 ms
42,240 KB
testcase_28 AC 602 ms
21,376 KB
testcase_29 AC 770 ms
30,592 KB
testcase_30 AC 367 ms
30,464 KB
testcase_31 AC 569 ms
11,008 KB
testcase_32 AC 420 ms
22,528 KB
testcase_33 AC 737 ms
18,304 KB
testcase_34 AC 491 ms
48,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = [-1] * N

    stack = [(0, -1, 0)]
    while stack:
        cur, par, dir = stack.pop()
        match dir:
            case 1:
                tree_size[cur] = 1
                for n in tree[cur]:
                    if n == par:
                        continue
                    tree_size[cur] += tree_size[n]
            case 0:
                next_stack = []
                for n in tree[cur]:
                    if n == par:
                        continue
                    next_stack.append((n, cur, 0))
                stack.append((cur, par, 1))
                stack.extend(next_stack)
            case _:
                raise ValueError
    ans = 0
    for _ in range(Q):
        p, x = map(int, input().split())
        ans += tree_size[p-1] * x
        print(ans)


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