結果

問題 No.583 鉄道同好会
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2021-02-16 21:18:06
言語 Ruby
(3.3.0)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 680 bytes
コンパイル時間 59 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-09-13 10:42:59
合計ジャッジ時間 4,897 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 86 ms
12,288 KB
testcase_03 AC 86 ms
12,416 KB
testcase_04 AC 86 ms
12,288 KB
testcase_05 AC 91 ms
12,160 KB
testcase_06 AC 86 ms
12,288 KB
testcase_07 AC 87 ms
12,160 KB
testcase_08 AC 86 ms
12,288 KB
testcase_09 AC 86 ms
12,160 KB
testcase_10 AC 86 ms
12,160 KB
testcase_11 AC 165 ms
14,720 KB
testcase_12 AC 196 ms
16,384 KB
testcase_13 AC 200 ms
16,128 KB
testcase_14 AC 196 ms
16,256 KB
testcase_15 AC 226 ms
16,384 KB
testcase_16 AC 349 ms
20,736 KB
testcase_17 AC 417 ms
21,888 KB
testcase_18 AC 477 ms
21,504 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class UnionFind
  def initialize(n); @data = Array.new(n, &:itself); end
  def root(i); _compact(i, _root(i)); end
  def unite!(i,j); _compact(i, root(j)); end
  def same?(i,j); root(i) == root(j); end
    
  def _root(i); i = @data[i] until @data[i] == i; return i; end
  def _compact(i, r); @data[i], i = r, @data[i] until @data[i] == r; return r; end
end

N, M = gets.split.map(&:to_i)
D = Array.new(N, 0)
R = UnionFind.new(N)

E = M.times.map{ gets.split.map(&:to_i) }
E.each do |a,b| 
  D[a] += 1
  D[b] += 1
  R.unite!(a,b)
end

s = E.flatten.min

o = N.times.count{|i| D[i].odd? }
if o == 2 || o == 0
  puts E.all?{|a,b| R.same?(s, a) } ? "YES" : "NO"
else
  puts "NO"
end
0