結果

問題 No.583 鉄道同好会
ユーザー nebukuro09nebukuro09
提出日時 2017-10-28 03:38:20
言語 Python2
(2.7.18)
結果
AC  
実行時間 808 ms / 2,000 ms
コード長 944 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-22 00:30:48
合計ジャッジ時間 5,900 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind(object):
    def __init__(self, n):
        self.table = [-1 for _ in xrange(n)]

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.table[x] >= self.table[y]:
            self.table[y] += self.table[x]
            self.table[x] = y
        else:
            self.table[x] += self.table[y]
            self.table[y] = x

    def find(self, x):
        if self.table[x] < 0:
            return x
        self.table[x] = self.find(self.table[x])
        return self.table[x]


N, M = map(int, raw_input().split())
D = [0 for _ in xrange(N)]
U = UnionFind(N)
for _ in xrange(M):
    a, b = map(int, raw_input().split())
    D[a] += 1
    D[b] += 1
    U.unite(a, b)
union = all(U.find(a) == U.find(b) for a in xrange(N) for b in xrange(N) if D[a] > 0 and D[b] > 0)
odd = sum(d % 2 for d in D)
print "YES" if (odd == 0 or odd == 2) and union else "NO"
0