結果

問題 No.1637 Easy Tree Query
ユーザー wolgnikwolgnik
提出日時 2021-08-06 21:36:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 96,384 KB
最終ジャッジ日時 2024-09-17 03:45:10
合計ジャッジ時間 6,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,352 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 154 ms
96,000 KB
testcase_03 AC 32 ms
52,096 KB
testcase_04 AC 104 ms
86,528 KB
testcase_05 AC 123 ms
83,328 KB
testcase_06 AC 101 ms
81,384 KB
testcase_07 AC 78 ms
76,160 KB
testcase_08 AC 93 ms
83,200 KB
testcase_09 AC 150 ms
91,896 KB
testcase_10 AC 99 ms
79,744 KB
testcase_11 AC 175 ms
93,696 KB
testcase_12 AC 145 ms
89,128 KB
testcase_13 AC 79 ms
80,340 KB
testcase_14 AC 137 ms
92,120 KB
testcase_15 AC 165 ms
94,336 KB
testcase_16 AC 172 ms
96,256 KB
testcase_17 AC 93 ms
80,896 KB
testcase_18 AC 125 ms
83,576 KB
testcase_19 AC 126 ms
85,060 KB
testcase_20 AC 139 ms
87,680 KB
testcase_21 AC 113 ms
86,912 KB
testcase_22 AC 165 ms
96,384 KB
testcase_23 AC 87 ms
81,408 KB
testcase_24 AC 113 ms
86,400 KB
testcase_25 AC 119 ms
82,816 KB
testcase_26 AC 144 ms
90,112 KB
testcase_27 AC 180 ms
95,744 KB
testcase_28 AC 104 ms
81,792 KB
testcase_29 AC 129 ms
87,680 KB
testcase_30 AC 119 ms
87,552 KB
testcase_31 AC 83 ms
76,416 KB
testcase_32 AC 100 ms
82,560 KB
testcase_33 AC 108 ms
80,304 KB
testcase_34 AC 98 ms
93,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, Q = map(int, input().split())
e = [[] for _ in range(N + 1)]
for _ in range(N - 1):
  u, v = map(int, input().split())
  e[u].append(v)
  e[v].append(u)

s = [1]
vis = [0] * (N + 1)
parent = [0] * (N + 1)
vis[1] = 1
order = []
while len(s):
  x = s.pop()
  order.append(x)
  for y in e[x]:
    if vis[y]: continue
    parent[y] = x
    vis[y] = 1
    s.append(y)

size = [1] * (N + 1)
order.reverse()
for y in order[: -1]:
  x = parent[y]
  size[x] += size[y]

res = 0
for _ in range(Q):
  x, v = map(int, input().split())
  res += size[x] * v
  print(res)
0