結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー wonda_t_coffeewonda_t_coffee
提出日時 2020-01-31 23:12:04
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 411 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-09-17 10:26:27
合計ジャッジ時間 4,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,160 KB
testcase_01 AC 81 ms
12,416 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 75 ms
12,288 KB
testcase_04 AC 74 ms
12,288 KB
testcase_05 AC 74 ms
12,416 KB
testcase_06 AC 75 ms
12,160 KB
testcase_07 AC 78 ms
12,288 KB
testcase_08 AC 77 ms
12,160 KB
testcase_09 AC 81 ms
12,416 KB
testcase_10 WA -
testcase_11 AC 79 ms
12,160 KB
testcase_12 AC 79 ms
12,160 KB
testcase_13 AC 103 ms
13,568 KB
testcase_14 AC 109 ms
13,568 KB
testcase_15 AC 109 ms
13,312 KB
testcase_16 AC 106 ms
13,440 KB
testcase_17 AC 104 ms
13,440 KB
testcase_18 AC 167 ms
16,640 KB
testcase_19 WA -
testcase_20 AC 197 ms
18,048 KB
testcase_21 AC 258 ms
22,400 KB
testcase_22 AC 319 ms
24,832 KB
testcase_23 AC 390 ms
30,464 KB
testcase_24 AC 385 ms
29,568 KB
testcase_25 AC 405 ms
29,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.chomp.to_i
b = {}
(n-1).times do
  u, v = gets.chomp.split.map(&:to_i)

  b[u] ||= []
  b[u] << v
  b[v] ||= []
  b[v] << u
end
mins = [0xffffffff] * n
visited = [b.keys.first]
q = [[b.keys.first, 0]]
until q.empty?
  p, c = q.shift

  b[p].each do |bi|
    next if c + 1 > mins[bi]

    mins[bi] = c + 1
    visited << bi
    q.push([bi, c + 1])
  end
end
puts visited.uniq.size == n ? 'Bob' : 'Alice'
0