結果

問題 No.583 鉄道同好会
ユーザー ああいいああいい
提出日時 2022-03-30 21:43:08
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 548 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 79,836 KB
最終ジャッジ日時 2024-04-27 11:20:57
合計ジャッジ時間 2,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,616 KB
testcase_01 AC 39 ms
52,012 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 38 ms
52,884 KB
testcase_04 AC 38 ms
52,940 KB
testcase_05 AC 39 ms
52,956 KB
testcase_06 RE -
testcase_07 WA -
testcase_08 AC 39 ms
53,084 KB
testcase_09 RE -
testcase_10 AC 43 ms
54,600 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())

s = set()
parent = [-1] * N
def find(i):
    if parent[i] < i:return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:return False
    parent[J] += parent[I]
    parent[I] = J
    return True
memo = [0] * N
t = -1
for _ in range(M):
    a,b = map(int,input().split())
    memo[a] ^= 1
    memo[b] ^= 1
    s.add(a)
    s.add(b)
    unite(a,b)
    t = b
S = sum(memo)
if len(s) == -parent[find(t)] and S <= 2:
    print('YES')
else:
    print('NO')
0