結果

問題 No.1637 Easy Tree Query
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-01-10 12:05:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 852 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 28,800 KB
最終ジャッジ日時 2024-09-27 20:19:44
合計ジャッジ時間 25,851 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 1,162 ms
28,800 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 378 ms
20,224 KB
testcase_05 AC 863 ms
17,536 KB
testcase_06 AC 599 ms
15,616 KB
testcase_07 AC 294 ms
11,136 KB
testcase_08 AC 307 ms
18,048 KB
testcase_09 AC 848 ms
24,832 KB
testcase_10 AC 423 ms
14,720 KB
testcase_11 AC 1,072 ms
25,984 KB
testcase_12 AC 1,013 ms
22,400 KB
testcase_13 AC 217 ms
14,976 KB
testcase_14 AC 625 ms
24,832 KB
testcase_15 AC 1,069 ms
26,624 KB
testcase_16 AC 892 ms
28,544 KB
testcase_17 AC 301 ms
14,848 KB
testcase_18 AC 824 ms
17,536 KB
testcase_19 AC 816 ms
18,816 KB
testcase_20 AC 1,037 ms
22,272 KB
testcase_21 AC 608 ms
20,608 KB
testcase_22 AC 1,202 ms
28,672 KB
testcase_23 AC 317 ms
16,128 KB
testcase_24 AC 514 ms
20,480 KB
testcase_25 AC 875 ms
17,024 KB
testcase_26 AC 1,059 ms
23,168 KB
testcase_27 AC 1,273 ms
28,032 KB
testcase_28 AC 655 ms
16,640 KB
testcase_29 AC 851 ms
21,760 KB
testcase_30 AC 399 ms
21,504 KB
testcase_31 AC 642 ms
10,752 KB
testcase_32 AC 467 ms
17,280 KB
testcase_33 AC 801 ms
14,976 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
# input = sys.stdin.readline

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(x!=0):
    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(x!=0):
    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)
# print(flg)
0