結果
問題 | No.583 鉄道同好会 |
ユーザー | TANIGUCHI Kousuke |
提出日時 | 2021-02-16 21:27:09 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 293 ms / 2,000 ms |
コード長 | 694 bytes |
コンパイル時間 | 473 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-09-13 10:51:45 |
合計ジャッジ時間 | 4,052 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
12,288 KB |
testcase_01 | AC | 88 ms
12,160 KB |
testcase_02 | AC | 88 ms
12,288 KB |
testcase_03 | AC | 87 ms
12,160 KB |
testcase_04 | AC | 88 ms
12,416 KB |
testcase_05 | AC | 87 ms
12,160 KB |
testcase_06 | AC | 87 ms
12,160 KB |
testcase_07 | AC | 88 ms
12,160 KB |
testcase_08 | AC | 89 ms
12,160 KB |
testcase_09 | AC | 87 ms
12,288 KB |
testcase_10 | AC | 89 ms
12,160 KB |
testcase_11 | AC | 139 ms
12,160 KB |
testcase_12 | AC | 156 ms
12,160 KB |
testcase_13 | AC | 158 ms
12,416 KB |
testcase_14 | AC | 157 ms
12,288 KB |
testcase_15 | AC | 181 ms
12,288 KB |
testcase_16 | AC | 256 ms
12,416 KB |
testcase_17 | AC | 288 ms
12,544 KB |
testcase_18 | AC | 293 ms
12,288 KB |
コンパイルメッセージ
Syntax OK
ソースコード
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) M.times do a, b = gets.split.map(&:to_i) D[a] += 1 D[b] += 1 R.unite!(a,b) end s = D.index{|v| v > 0 } o = N.times.count{|i| D[i].odd? } if o == 2 || o == 0 puts D.each_with_index.all?{|c,u| c.zero? ^ R.same?(s, u) } ? "YES" : "NO" else puts "NO" end