結果

問題 No.583 鉄道同好会
ユーザー ああいいああいい
提出日時 2022-03-30 21:43:37
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 591 bytes
コンパイル時間 762 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 846,196 KB
最終ジャッジ日時 2024-04-27 11:22:09
合計ジャッジ時間 3,292 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,404 KB
testcase_01 AC 39 ms
52,284 KB
testcase_02 AC 39 ms
52,676 KB
testcase_03 AC 39 ms
53,704 KB
testcase_04 AC 40 ms
52,276 KB
testcase_05 AC 40 ms
52,472 KB
testcase_06 RE -
testcase_07 WA -
testcase_08 AC 40 ms
53,752 KB
testcase_09 MLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 8)

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