結果

問題 No.1637 Easy Tree Query
ユーザー qibqib
提出日時 2022-11-17 00:00:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 486 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 95,840 KB
最終ジャッジ日時 2024-09-17 18:27:53
合計ジャッジ時間 14,841 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,228 KB
testcase_01 AC 36 ms
54,108 KB
testcase_02 AC 399 ms
91,436 KB
testcase_03 AC 36 ms
53,028 KB
testcase_04 AC 196 ms
84,336 KB
testcase_05 AC 373 ms
82,772 KB
testcase_06 AC 277 ms
80,756 KB
testcase_07 AC 191 ms
76,928 KB
testcase_08 AC 173 ms
83,172 KB
testcase_09 AC 332 ms
88,232 KB
testcase_10 AC 217 ms
80,216 KB
testcase_11 AC 435 ms
89,676 KB
testcase_12 AC 406 ms
86,044 KB
testcase_13 AC 154 ms
80,236 KB
testcase_14 AC 274 ms
88,212 KB
testcase_15 AC 395 ms
89,836 KB
testcase_16 AC 351 ms
90,784 KB
testcase_17 AC 196 ms
80,312 KB
testcase_18 AC 352 ms
81,996 KB
testcase_19 AC 343 ms
84,024 KB
testcase_20 AC 408 ms
86,172 KB
testcase_21 AC 259 ms
84,600 KB
testcase_22 AC 433 ms
91,628 KB
testcase_23 AC 194 ms
80,952 KB
testcase_24 AC 229 ms
84,500 KB
testcase_25 AC 360 ms
82,020 KB
testcase_26 AC 410 ms
87,232 KB
testcase_27 AC 486 ms
90,420 KB
testcase_28 AC 311 ms
81,392 KB
testcase_29 AC 351 ms
85,444 KB
testcase_30 AC 202 ms
85,244 KB
testcase_31 AC 275 ms
76,416 KB
testcase_32 AC 239 ms
81,956 KB
testcase_33 AC 349 ms
80,288 KB
testcase_34 AC 155 ms
95,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())

g = [[] for _ in range(n)]
for _ in range(n - 1):
  a, b = map(int, input().split())
  a -= 1
  b -= 1
  g[a].append(b)
  g[b].append(a)

src = 0
st = [~ src, src]
par = [None for _ in range(n)]
dp = [0 for _ in range(n)]
while len(st) > 0:
  cur = st.pop()
  if cur >= 0:
    for nxt in g[cur]:
      if nxt == par[cur]:
        continue
      par[nxt] = cur
      st.append(~ nxt)
      st.append(nxt)
  
  else:
    dp[~ cur] += 1
    if not par[~ cur] is None:
      dp[par[~ cur]] += dp[~ cur]

ans = 0
for _ in range(q):
  p, x = map(int, input().split())
  p -= 1
  ans += dp[p] * x
  print(ans)
0