結果

問題 No.1637 Easy Tree Query
ユーザー simansiman
提出日時 2021-11-26 15:50:21
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 791 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 60,544 KB
最終ジャッジ日時 2024-06-29 12:27:48
合計ジャッジ時間 22,746 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 83 ms
12,032 KB
testcase_02 AC 1,047 ms
58,368 KB
testcase_03 AC 86 ms
12,160 KB
testcase_04 AC 499 ms
37,120 KB
testcase_05 AC 573 ms
29,952 KB
testcase_06 AC 422 ms
24,832 KB
testcase_07 AC 190 ms
12,800 KB
testcase_08 AC 407 ms
32,384 KB
testcase_09 AC 806 ms
50,688 KB
testcase_10 AC 335 ms
22,528 KB
testcase_11 AC 924 ms
53,760 KB
testcase_12 AC 786 ms
40,192 KB
testcase_13 AC 267 ms
23,168 KB
testcase_14 AC 737 ms
51,200 KB
testcase_15 AC 985 ms
55,040 KB
testcase_16 AC 983 ms
59,392 KB
testcase_17 AC 311 ms
23,168 KB
testcase_18 AC 572 ms
29,824 KB
testcase_19 AC 613 ms
34,048 KB
testcase_20 AC 787 ms
40,704 KB
testcase_21 AC 570 ms
36,608 KB
testcase_22 AC 1,050 ms
60,544 KB
testcase_23 AC 331 ms
25,344 KB
testcase_24 AC 537 ms
36,224 KB
testcase_25 AC 562 ms
29,824 KB
testcase_26 AC 922 ms
43,904 KB
testcase_27 AC 1,041 ms
58,368 KB
testcase_28 AC 468 ms
27,008 KB
testcase_29 AC 693 ms
40,448 KB
testcase_30 AC 541 ms
40,064 KB
testcase_31 AC 296 ms
12,288 KB
testcase_32 AC 426 ms
29,824 KB
testcase_33 AC 472 ms
22,784 KB
testcase_34 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'tsort'

class Hash
  include TSort
  alias tsort_each_node each_key
  def tsort_each_child(node, &block)
    fetch(node).each(&block)
  end
end

N, Q = gets.split.map(&:to_i)
OE = Array.new(N + 1) { [] }
E = Hash.new
RE = Hash.new { |h, k| h[k] = [] }
1.upto(N) do |v|
  E[v] = []
end

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

visited = Array.new(N + 1, false)
queue = [1]
until queue.empty?
  v = queue.shift

  next if visited[v]
  visited[v] = true

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

    E[v] << u
    RE[u] << v
    queue << u
  end
end

C = Array.new(N + 1, 0)
E.tsort.each do |v|
  C[v] += 1

  RE[v].each do |u|
    C[u] += C[v]
  end
end

ans = 0

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

  puts ans
end
0