結果

問題 No.1637 Easy Tree Query
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-08-06 21:36:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 1,016 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 106,896 KB
最終ジャッジ日時 2024-09-17 03:45:38
合計ジャッジ時間 9,923 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,368 KB
testcase_01 AC 41 ms
55,012 KB
testcase_02 AC 188 ms
106,896 KB
testcase_03 AC 40 ms
54,840 KB
testcase_04 AC 196 ms
85,720 KB
testcase_05 AC 195 ms
91,852 KB
testcase_06 AC 157 ms
87,348 KB
testcase_07 AC 89 ms
79,880 KB
testcase_08 AC 170 ms
83,876 KB
testcase_09 AC 292 ms
94,372 KB
testcase_10 AC 130 ms
84,312 KB
testcase_11 AC 312 ms
99,084 KB
testcase_12 AC 282 ms
96,540 KB
testcase_13 AC 121 ms
80,864 KB
testcase_14 AC 270 ms
91,520 KB
testcase_15 AC 347 ms
98,328 KB
testcase_16 AC 342 ms
98,192 KB
testcase_17 AC 133 ms
81,824 KB
testcase_18 AC 196 ms
91,376 KB
testcase_19 AC 224 ms
91,572 KB
testcase_20 AC 279 ms
97,040 KB
testcase_21 AC 218 ms
89,784 KB
testcase_22 AC 395 ms
101,880 KB
testcase_23 AC 144 ms
83,328 KB
testcase_24 AC 209 ms
87,960 KB
testcase_25 AC 197 ms
91,452 KB
testcase_26 AC 290 ms
98,016 KB
testcase_27 AC 368 ms
102,600 KB
testcase_28 AC 176 ms
88,488 KB
testcase_29 AC 246 ms
93,884 KB
testcase_30 AC 208 ms
87,780 KB
testcase_31 AC 94 ms
84,232 KB
testcase_32 AC 165 ms
85,352 KB
testcase_33 AC 166 ms
89,264 KB
testcase_34 AC 126 ms
90,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin

from collections import deque
def NC_Dij(lis,start):

    ret = [float("inf")] * len(lis)
    ret[start] = 0
    
    q = deque([start])
    plis = [i for i in range(len(lis))]

    while len(q) > 0:
        now = q.popleft()

        for nex in lis[now]:

            if ret[nex] > ret[now] + 1:
                ret[nex] = ret[now] + 1
                plis[nex] = now
                q.append(nex)

    return ret,plis

N,Q = map(int,stdin.readline().split())

lis = [ [] for i in range(N) ]

for i in range(N-1):
    a,b = map(int,stdin.readline().split())
    a -= 1
    b -= 1

    lis[a].append(b)
    lis[b].append(a)

dlis,plis = NC_Dij(lis,0)

di = [(dlis[i],i) for i in range(N)]
di.sort()
di.reverse()

c = [1] * N
#print (di,plis)

for td,v in di:
    if plis[v] != v:
        c[plis[v]] += c[v]

#print (c)

ANS = []
ans = 0

for i in range(Q):

    p,x = map(int,stdin.readline().split())
    p -= 1
    ans += c[p] * x
    ANS.append(str(ans))

print ("\n".join(ANS))
0