結果

問題 No.583 鉄道同好会
ユーザー letrangerjpletrangerjp
提出日時 2017-10-28 01:20:26
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 367 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-11-22 00:10:48
合計ジャッジ時間 26,154 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
17,664 KB
testcase_01 AC 85 ms
29,440 KB
testcase_02 AC 84 ms
19,108 KB
testcase_03 AC 85 ms
30,208 KB
testcase_04 AC 85 ms
19,104 KB
testcase_05 AC 89 ms
30,080 KB
testcase_06 AC 84 ms
19,104 KB
testcase_07 AC 85 ms
30,464 KB
testcase_08 AC 85 ms
18,848 KB
testcase_09 AC 86 ms
29,568 KB
testcase_10 AC 85 ms
18,848 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map &:to_i
edges = []
$<.map{|s|
  a, b = s.split.map &:to_i
  edges << [a, b]
}

used = [false]*M
f=->e{
  return if used[e]
  used[e] = true
  edges[e].each{|a|
    M.times{|i|
      next if edges[i][0]!=a&&edges[i][1]!=a || used[i]
      f[i]
    }
  }
}
f[0]
h=[0]*N
edges.each{|a,b|
  h[a]^=1
  h[b]^=1
}
puts used.all? && h.sum<3 ? :YES : :NO
0