結果

問題 No.1637 Easy Tree Query
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2021-08-27 21:22:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 659 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 28,928 KB
最終ジャッジ日時 2024-11-21 00:42:00
合計ジャッジ時間 25,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 1,087 ms
28,928 KB
testcase_03 WA -
testcase_04 AC 361 ms
20,224 KB
testcase_05 AC 841 ms
17,536 KB
testcase_06 AC 556 ms
15,744 KB
testcase_07 AC 271 ms
11,136 KB
testcase_08 AC 285 ms
18,048 KB
testcase_09 AC 763 ms
24,448 KB
testcase_10 AC 409 ms
14,592 KB
testcase_11 AC 999 ms
25,984 KB
testcase_12 AC 945 ms
22,528 KB
testcase_13 AC 190 ms
14,976 KB
testcase_14 AC 548 ms
24,704 KB
testcase_15 AC 953 ms
26,624 KB
testcase_16 AC 809 ms
28,288 KB
testcase_17 AC 307 ms
14,848 KB
testcase_18 AC 799 ms
17,280 KB
testcase_19 AC 758 ms
18,816 KB
testcase_20 AC 1,028 ms
22,144 KB
testcase_21 AC 543 ms
20,352 KB
testcase_22 AC 1,132 ms
28,672 KB
testcase_23 AC 315 ms
16,000 KB
testcase_24 AC 451 ms
20,480 KB
testcase_25 AC 828 ms
16,896 KB
testcase_26 AC 992 ms
23,168 KB
testcase_27 AC 1,178 ms
27,904 KB
testcase_28 AC 603 ms
16,384 KB
testcase_29 AC 771 ms
21,632 KB
testcase_30 AC 364 ms
21,504 KB
testcase_31 AC 589 ms
10,752 KB
testcase_32 AC 421 ms
17,024 KB
testcase_33 AC 790 ms
14,848 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
e = [[] for _ in range(N)]
for i in range(N-1):
  a,b = map(int,input().split())
  a -= 1
  b -= 1
  e[a].append(b)
  e[b].append(a)

dist = [-1]*N
def dfs(x):
  if len(e[x]) == 1:
    return
  for ix in e[x]:
    if dist[ix] == -1:
      dist[ix] = dist[x] + 1
      dfs(ix)
  return
dist[0] = 0
dfs(0)
flg = [-1]*N
def dfs_v2(x):
  if len(e[x]) == 1:
    flg[x] = 1
    return 1
  if flg[x] != -1:
    return flg[x]
  tmp = 1
  for ix in e[x]:
    if dist[ix] > dist[x]:
      tmp += dfs_v2(ix)
  flg[x] = tmp
  return tmp
dfs_v2(0)
S = 0
for _ in range(Q):
  p,x = map(int,input().split())
  p -= 1
  S += x*flg[p]
  print(S)
0