結果

問題 No.1637 Easy Tree Query
ユーザー simansiman
提出日時 2021-11-26 15:37:02
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 450 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-06-29 12:16:15
合計ジャッジ時間 15,081 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,288 KB
testcase_01 AC 73 ms
12,160 KB
testcase_02 AC 520 ms
24,960 KB
testcase_03 AC 78 ms
12,160 KB
testcase_04 AC 230 ms
18,944 KB
testcase_05 AC 377 ms
18,176 KB
testcase_06 AC 271 ms
15,616 KB
testcase_07 AC 157 ms
12,288 KB
testcase_08 AC 188 ms
17,920 KB
testcase_09 AC 373 ms
22,912 KB
testcase_10 AC 223 ms
14,464 KB
testcase_11 AC 464 ms
23,040 KB
testcase_12 AC 483 ms
20,992 KB
testcase_13 AC 152 ms
15,360 KB
testcase_14 AC 312 ms
23,040 KB
testcase_15 AC 469 ms
24,960 KB
testcase_16 AC 420 ms
26,112 KB
testcase_17 AC 183 ms
15,360 KB
testcase_18 AC 341 ms
17,920 KB
testcase_19 AC 344 ms
17,920 KB
testcase_20 AC 439 ms
20,992 KB
testcase_21 AC 280 ms
18,944 KB
testcase_22 AC 512 ms
26,112 KB
testcase_23 AC 201 ms
15,488 KB
testcase_24 AC 280 ms
18,688 KB
testcase_25 AC 383 ms
17,152 KB
testcase_26 AC 486 ms
22,528 KB
testcase_27 AC 550 ms
25,856 KB
testcase_28 AC 328 ms
15,744 KB
testcase_29 AC 389 ms
20,864 KB
testcase_30 AC 230 ms
20,608 KB
testcase_31 AC 258 ms
12,416 KB
testcase_32 AC 231 ms
16,640 KB
testcase_33 AC 335 ms
15,232 KB
testcase_34 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, Q = gets.split.map(&:to_i)
E = Hash.new { |h, k| h[k] = [] }

(N - 1).times do
  a, b = gets.split.map(&:to_i)
  E[a] << b
  E[b] << a
end

C = Array.new(N + 1, 0)

def dfs(v, visited)
  cnt = 1
  visited[v] = true

  E[v].each do |u|
    next if visited[u]

    cnt += dfs(u, visited)
  end

  C[v] = cnt
end

visited = Array.new(N + 1, false)
dfs(1, visited)
ans = 0

Q.times do
  p, x = gets.split.map(&:to_i)
  ans += C[p] * x

  puts ans
end
0