結果

問題 No.1637 Easy Tree Query
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-01-10 12:06:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,238 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,176 KB
最終ジャッジ日時 2024-09-27 20:20:10
合計ジャッジ時間 25,709 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,008 KB
testcase_01 AC 31 ms
11,136 KB
testcase_02 AC 1,142 ms
29,184 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 374 ms
20,480 KB
testcase_05 AC 863 ms
17,664 KB
testcase_06 AC 588 ms
15,872 KB
testcase_07 AC 286 ms
11,392 KB
testcase_08 AC 295 ms
18,304 KB
testcase_09 AC 802 ms
24,704 KB
testcase_10 AC 422 ms
14,976 KB
testcase_11 AC 1,034 ms
26,112 KB
testcase_12 AC 969 ms
22,784 KB
testcase_13 AC 201 ms
15,232 KB
testcase_14 AC 581 ms
24,960 KB
testcase_15 AC 1,013 ms
27,136 KB
testcase_16 AC 845 ms
28,800 KB
testcase_17 AC 298 ms
15,104 KB
testcase_18 AC 791 ms
17,664 KB
testcase_19 AC 798 ms
19,200 KB
testcase_20 AC 1,013 ms
22,528 KB
testcase_21 AC 573 ms
20,736 KB
testcase_22 AC 1,123 ms
29,056 KB
testcase_23 AC 301 ms
16,256 KB
testcase_24 AC 492 ms
20,608 KB
testcase_25 AC 854 ms
17,280 KB
testcase_26 AC 1,028 ms
23,424 KB
testcase_27 AC 1,238 ms
28,288 KB
testcase_28 AC 633 ms
16,896 KB
testcase_29 AC 835 ms
21,760 KB
testcase_30 AC 373 ms
21,760 KB
testcase_31 AC 609 ms
11,008 KB
testcase_32 AC 440 ms
17,408 KB
testcase_33 AC 767 ms
14,976 KB
testcase_34 AC 554 ms
50,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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