結果

問題 No.1637 Easy Tree Query
ユーザー ThetaTheta
提出日時 2024-10-01 17:10:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 1,057 bytes
コンパイル時間 796 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 116,480 KB
最終ジャッジ日時 2024-10-01 17:11:04
合計ジャッジ時間 15,468 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 450 ms
105,728 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 220 ms
91,392 KB
testcase_05 AC 349 ms
87,252 KB
testcase_06 AC 303 ms
84,864 KB
testcase_07 AC 194 ms
77,824 KB
testcase_08 AC 198 ms
87,936 KB
testcase_09 AC 364 ms
98,048 KB
testcase_10 AC 242 ms
82,816 KB
testcase_11 AC 458 ms
100,736 KB
testcase_12 AC 413 ms
95,232 KB
testcase_13 AC 169 ms
83,456 KB
testcase_14 AC 353 ms
98,688 KB
testcase_15 AC 429 ms
101,888 KB
testcase_16 AC 391 ms
105,000 KB
testcase_17 AC 202 ms
83,584 KB
testcase_18 AC 391 ms
87,440 KB
testcase_19 AC 337 ms
89,216 KB
testcase_20 AC 411 ms
95,232 KB
testcase_21 AC 308 ms
92,032 KB
testcase_22 AC 454 ms
104,832 KB
testcase_23 AC 200 ms
85,248 KB
testcase_24 AC 262 ms
91,648 KB
testcase_25 AC 384 ms
86,144 KB
testcase_26 AC 423 ms
96,640 KB
testcase_27 AC 484 ms
104,704 KB
testcase_28 AC 333 ms
85,984 KB
testcase_29 AC 358 ms
94,208 KB
testcase_30 AC 327 ms
94,052 KB
testcase_31 AC 267 ms
76,160 KB
testcase_32 AC 286 ms
86,912 KB
testcase_33 AC 334 ms
83,072 KB
testcase_34 AC 219 ms
116,480 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