結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー simansiman
提出日時 2020-03-14 02:28:48
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 533 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 30,976 KB
最終ジャッジ日時 2024-05-02 22:49:35
合計ジャッジ時間 5,493 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,160 KB
testcase_01 AC 74 ms
12,416 KB
testcase_02 AC 76 ms
12,288 KB
testcase_03 AC 79 ms
12,288 KB
testcase_04 AC 76 ms
12,160 KB
testcase_05 AC 77 ms
12,288 KB
testcase_06 AC 81 ms
12,160 KB
testcase_07 AC 77 ms
12,288 KB
testcase_08 AC 77 ms
12,288 KB
testcase_09 AC 76 ms
12,160 KB
testcase_10 AC 75 ms
12,288 KB
testcase_11 AC 75 ms
12,032 KB
testcase_12 AC 76 ms
12,288 KB
testcase_13 AC 105 ms
13,824 KB
testcase_14 AC 104 ms
16,512 KB
testcase_15 AC 106 ms
16,384 KB
testcase_16 AC 105 ms
13,568 KB
testcase_17 RE -
testcase_18 AC 160 ms
16,640 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 316 ms
26,240 KB
testcase_22 AC 374 ms
29,696 KB
testcase_23 AC 384 ms
30,976 KB
testcase_24 AC 429 ms
29,952 KB
testcase_25 AC 392 ms
30,848 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
G = Hash.new { |h, k| h[k] = [] }

(N - 1).times do
  u, v = gets.split.map(&:to_i)

  G[u] << v
  G[v] << u
end

def dfs(v, root, visited)
  visited[v] = true

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

    dfs(u, root, visited)
  end
end

visited = Hash.new(false)
cnt = 0

N.times do |i|
  next if visited[i]

  cnt += 1
  dfs(i, i, visited)
end

if cnt >= 3
  puts 'Alice'
elsif cnt == 1
  puts 'Bob'
else
  c = (0...N).count { |v| G[v].size == 2 }

  if c == N - 1
    puts 'Bob'
  else
    puts 'Alice'
  end
end
0