結果

問題 No.1637 Easy Tree Query
ユーザー yudai1102jpyudai1102jp
提出日時 2021-08-06 23:51:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 782 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 817,792 KB
最終ジャッジ日時 2024-09-17 04:22:19
合計ジャッジ時間 26,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 1,168 ms
28,160 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 386 ms
19,840 KB
testcase_05 AC 852 ms
17,280 KB
testcase_06 AC 570 ms
15,616 KB
testcase_07 AC 284 ms
11,136 KB
testcase_08 AC 313 ms
17,920 KB
testcase_09 AC 811 ms
24,064 KB
testcase_10 AC 407 ms
14,720 KB
testcase_11 AC 1,043 ms
25,472 KB
testcase_12 AC 981 ms
22,144 KB
testcase_13 AC 215 ms
14,848 KB
testcase_14 AC 619 ms
24,320 KB
testcase_15 AC 1,035 ms
25,984 KB
testcase_16 AC 867 ms
27,648 KB
testcase_17 AC 309 ms
14,848 KB
testcase_18 AC 791 ms
17,280 KB
testcase_19 AC 809 ms
18,560 KB
testcase_20 AC 1,008 ms
21,760 KB
testcase_21 AC 575 ms
20,224 KB
testcase_22 AC 1,165 ms
28,032 KB
testcase_23 AC 306 ms
15,744 KB
testcase_24 AC 513 ms
20,096 KB
testcase_25 AC 865 ms
16,768 KB
testcase_26 AC 1,046 ms
22,784 KB
testcase_27 AC 1,245 ms
27,392 KB
testcase_28 AC 637 ms
16,384 KB
testcase_29 AC 828 ms
21,248 KB
testcase_30 AC 394 ms
21,120 KB
testcase_31 AC 625 ms
10,880 KB
testcase_32 AC 452 ms
17,024 KB
testcase_33 AC 768 ms
14,720 KB
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import heapq
sys.setrecursionlimit(10**6)  # 再帰関数使う時有効


def countup(now, R, used, count):
    # if len(root[now]) == 1 and root[now][0] in used:
    #     count[root[now][0]] += count[now]+1
    #     return
    if now in used:
        return
    for next_ in root[now]:
        if next_ == R:
            continue
        countup(next_, now, used | set([now]), count)
    if now == R:
        return
    count[R] += count[now]


N, Q = map(int, input().split())
root = [[] for i in range(N+1)]
for i in range(N-1):
    a, b = map(int, input().split())
    root[a-1].append(b-1)
    root[b-1].append(a-1)
count = [1]*N
countup(0, 0, set(), count)

ans = 0
for i in range(Q):
    p, x = map(int, input().split())

    ans += count[p-1]*x
    print(ans)
0