結果

問題 No.1637 Easy Tree Query
ユーザー tobusakanatobusakana
提出日時 2022-11-27 14:10:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 1,237 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 92,252 KB
最終ジャッジ日時 2024-10-04 02:12:12
合計ジャッジ時間 9,986 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,692 KB
testcase_01 AC 38 ms
52,212 KB
testcase_02 AC 175 ms
92,252 KB
testcase_03 AC 38 ms
52,128 KB
testcase_04 AC 160 ms
84,608 KB
testcase_05 AC 164 ms
81,984 KB
testcase_06 AC 139 ms
80,588 KB
testcase_07 AC 102 ms
76,672 KB
testcase_08 AC 145 ms
82,688 KB
testcase_09 AC 215 ms
88,704 KB
testcase_10 AC 126 ms
79,400 KB
testcase_11 AC 246 ms
89,856 KB
testcase_12 AC 216 ms
87,168 KB
testcase_13 AC 115 ms
80,128 KB
testcase_14 AC 221 ms
88,960 KB
testcase_15 AC 250 ms
90,852 KB
testcase_16 AC 272 ms
92,032 KB
testcase_17 AC 119 ms
80,064 KB
testcase_18 AC 173 ms
81,920 KB
testcase_19 AC 178 ms
83,072 KB
testcase_20 AC 207 ms
86,400 KB
testcase_21 AC 172 ms
84,608 KB
testcase_22 AC 273 ms
92,160 KB
testcase_23 AC 122 ms
80,864 KB
testcase_24 AC 174 ms
84,608 KB
testcase_25 AC 167 ms
81,248 KB
testcase_26 AC 224 ms
87,680 KB
testcase_27 AC 280 ms
91,904 KB
testcase_28 AC 150 ms
81,340 KB
testcase_29 AC 195 ms
85,376 KB
testcase_30 AC 171 ms
85,760 KB
testcase_31 AC 92 ms
76,416 KB
testcase_32 AC 143 ms
81,664 KB
testcase_33 AC 146 ms
79,872 KB
testcase_34 AC 116 ms
89,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N,Q = map(int,readline().split())
G = [[] for i in range(N)]
indegree = [0] * N
for _ in range(N - 1):
    a,b = map(int,readline().split())
    G[a - 1].append(b - 1)
    G[b - 1].append(a - 1)
    indegree[a - 1] += 1
    indegree[b - 1] += 1
    
# 入り次数が1の頂点からスタートして、自分は部分木サイズ1
# それを次の親に対していく
cnt = [1] * N
starts = []
for i in range(1, N):
    if indegree[i] == 1:
        starts.append(i)
        
dist_from_start = [0] * N
stack = [[0, 0, -1]]
while stack:
    v,d,p = stack.pop()
    dist_from_start[v] = d
    for child in G[v]:
        if child == p:
            continue
        stack.append([child, d + 1, v])

while starts:
    next_starts = []
    for s in starts:
        indegree[s] -= 1
        for child in G[s]:
            if dist_from_start[child] > dist_from_start[s]:
                continue
            cnt[child] += cnt[s]
            indegree[child] -= 1
            if indegree[child] == 1 and child != 0:
                next_starts.append(child)
    starts = next_starts
    
ans = 0        
for _ in range(Q):
    p,x = map(int,readline().split())
    ans += cnt[p - 1] * x
    print(ans)
0