結果

問題 No.1637 Easy Tree Query
ユーザー yudai1102jpyudai1102jp
提出日時 2021-08-06 22:26:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 727 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,536 KB
最終ジャッジ日時 2024-09-17 03:54:32
合計ジャッジ時間 25,782 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 1,187 ms
28,928 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 395 ms
20,480 KB
testcase_05 AC 898 ms
18,688 KB
testcase_06 AC 596 ms
16,640 KB
testcase_07 AC 293 ms
11,136 KB
testcase_08 AC 312 ms
18,432 KB
testcase_09 AC 815 ms
25,728 KB
testcase_10 AC 432 ms
15,232 KB
testcase_11 AC 1,074 ms
27,648 KB
testcase_12 AC 1,037 ms
24,064 KB
testcase_13 AC 216 ms
15,232 KB
testcase_14 AC 615 ms
25,344 KB
testcase_15 AC 1,049 ms
28,160 KB
testcase_16 AC 874 ms
29,312 KB
testcase_17 AC 311 ms
15,488 KB
testcase_18 AC 867 ms
18,688 KB
testcase_19 AC 860 ms
19,968 KB
testcase_20 AC 1,056 ms
23,680 KB
testcase_21 AC 589 ms
21,248 KB
testcase_22 AC 1,208 ms
30,336 KB
testcase_23 AC 311 ms
16,384 KB
testcase_24 AC 503 ms
21,120 KB
testcase_25 AC 896 ms
18,048 KB
testcase_26 AC 1,075 ms
24,832 KB
testcase_27 AC 1,300 ms
29,824 KB
testcase_28 AC 657 ms
17,408 KB
testcase_29 AC 852 ms
22,912 KB
testcase_30 AC 402 ms
21,632 KB
testcase_31 AC 629 ms
10,752 KB
testcase_32 AC 465 ms
17,920 KB
testcase_33 AC 827 ms
15,488 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
cost = [0]*N
ans = 0
for i in range(Q):
    p, x = map(int, input().split())
    cost[p-1] += x
    ans += count[p-1]*x
    print(ans)
0