結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,820 KB
testcase_01 AC 10 ms
6,820 KB
testcase_02 AC 11 ms
6,820 KB
testcase_03 AC 10 ms
6,816 KB
testcase_04 AC 22 ms
6,816 KB
testcase_05 AC 10 ms
6,820 KB
testcase_06 AC 10 ms
6,820 KB
testcase_07 AC 13 ms
6,816 KB
testcase_08 AC 10 ms
6,816 KB
testcase_09 AC 11 ms
6,816 KB
testcase_10 AC 12 ms
6,816 KB
testcase_11 AC 434 ms
6,820 KB
testcase_12 AC 477 ms
6,820 KB
testcase_13 AC 478 ms
6,820 KB
testcase_14 AC 480 ms
6,816 KB
testcase_15 AC 528 ms
6,816 KB
testcase_16 AC 731 ms
6,816 KB
testcase_17 AC 808 ms
6,820 KB
testcase_18 AC 805 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

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