結果

問題 No.583 鉄道同好会
ユーザー sca1lsca1l
提出日時 2017-10-27 23:25:38
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 452 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-11-21 23:18:59
合計ジャッジ時間 3,426 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 86 ms
12,288 KB
testcase_03 WA -
testcase_04 AC 88 ms
12,032 KB
testcase_05 AC 84 ms
12,160 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 87 ms
12,032 KB
testcase_09 AC 85 ms
12,160 KB
testcase_10 AC 85 ms
12,160 KB
testcase_11 AC 128 ms
12,544 KB
testcase_12 AC 144 ms
12,928 KB
testcase_13 AC 145 ms
13,056 KB
testcase_14 AC 142 ms
12,800 KB
testcase_15 AC 160 ms
13,312 KB
testcase_16 AC 225 ms
13,952 KB
testcase_17 AC 258 ms
14,976 KB
testcase_18 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m = gets.split.map(&:to_i)
x = n.times.map{[]}
at = 0
m.times{
  a,b=gets.split.map(&:to_i)
  at=a
  x[a]<<b
  x[b]<<a
}

uni = x.select{|t| t.size>0}.size

con = 0
q = [at]
ch = Array.new(n, false)
while q.size>0
  now = q.shift
  ch[now] = true
  x[now].each{|ne|
    next if ch[now]
    q<<ne
  }
  con+=1
end

if con<uni then
  puts 'NO'
  exit
end

odd = x.select{|t| t.size%2==1}.size

if odd==0 || odd==2 then
  puts 'YES'
else
  puts 'NO'
end
0