結果

問題 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
コンパイル時間 211 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,056 KB
最終ジャッジ日時 2024-05-01 01:29:18
合計ジャッジ時間 27,860 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 1,113 ms
29,056 KB
testcase_03 WA -
testcase_04 AC 389 ms
20,096 KB
testcase_05 AC 866 ms
17,664 KB
testcase_06 AC 596 ms
15,872 KB
testcase_07 AC 289 ms
11,136 KB
testcase_08 AC 322 ms
18,176 KB
testcase_09 AC 823 ms
24,448 KB
testcase_10 AC 435 ms
14,720 KB
testcase_11 AC 1,088 ms
25,984 KB
testcase_12 AC 1,033 ms
22,784 KB
testcase_13 AC 219 ms
15,104 KB
testcase_14 AC 615 ms
24,960 KB
testcase_15 AC 1,058 ms
26,624 KB
testcase_16 AC 895 ms
28,288 KB
testcase_17 AC 304 ms
14,976 KB
testcase_18 AC 812 ms
17,408 KB
testcase_19 AC 847 ms
18,816 KB
testcase_20 AC 1,023 ms
22,144 KB
testcase_21 AC 576 ms
20,608 KB
testcase_22 AC 1,205 ms
28,672 KB
testcase_23 AC 309 ms
16,000 KB
testcase_24 AC 506 ms
20,352 KB
testcase_25 AC 864 ms
17,024 KB
testcase_26 AC 1,066 ms
23,296 KB
testcase_27 AC 1,283 ms
28,032 KB
testcase_28 AC 636 ms
16,512 KB
testcase_29 AC 867 ms
21,632 KB
testcase_30 AC 395 ms
21,632 KB
testcase_31 AC 629 ms
11,008 KB
testcase_32 AC 456 ms
17,280 KB
testcase_33 AC 795 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