結果
問題 | No.583 鉄道同好会 |
ユーザー | daleksprinter |
提出日時 | 2018-08-26 21:53:23 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 458 ms / 2,000 ms |
コード長 | 1,110 bytes |
コンパイル時間 | 507 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 10,240 KB |
最終ジャッジ日時 | 2024-07-01 04:00:22 |
合計ジャッジ時間 | 3,656 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
6,812 KB |
testcase_01 | AC | 11 ms
6,944 KB |
testcase_02 | AC | 11 ms
6,940 KB |
testcase_03 | AC | 12 ms
6,940 KB |
testcase_04 | AC | 11 ms
6,944 KB |
testcase_05 | AC | 11 ms
6,944 KB |
testcase_06 | AC | 11 ms
6,944 KB |
testcase_07 | AC | 12 ms
6,944 KB |
testcase_08 | AC | 12 ms
6,940 KB |
testcase_09 | AC | 12 ms
6,940 KB |
testcase_10 | AC | 13 ms
6,940 KB |
testcase_11 | AC | 123 ms
7,168 KB |
testcase_12 | AC | 168 ms
7,680 KB |
testcase_13 | AC | 162 ms
7,552 KB |
testcase_14 | AC | 163 ms
7,552 KB |
testcase_15 | AC | 208 ms
8,064 KB |
testcase_16 | AC | 374 ms
9,472 KB |
testcase_17 | AC | 454 ms
10,240 KB |
testcase_18 | AC | 458 ms
10,240 KB |
ソースコード
n,m = map(int,raw_input().split()) class UnionFind(): def __init__(self,size): self.table = [-1 for _ in range(size)] def find(self,x): while self.table[x] >= 0: x = self.table[x] return x def union(self,x,y): s1 = self.find(x) s2 = self.find(y) if s1 != s2: if self.table[s1] != self.table[s2]: if self.table[s1] < self.table[s2]: self.table[s2] = s1 else: self.table[s1] = s2 else: self.table[s1] += -1 self.table[s2] = s1 return degree = [0 for i in range(n)] uf = UnionFind(n) for i in range(m): f,t = map(int,raw_input().split()) degree[f] += 1; degree[t] += 1 uf.union(f,t) a = -1 for i in range(n): if degree[i] > 0: a = i break a = uf.find(a) count = 0 for i in range(n): if degree[i] != 0 and uf.find(i) == a: if degree[i] % 2 == 1: count += 1 elif degree[i] == 0: continue else: print 'NO' quit() if count == 0 or count == 2: print 'YES' else : print 'NO'