結果

問題 No.583 鉄道同好会
ユーザー ああいいああいい
提出日時 2022-03-30 21:44:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 76,952 KB
最終ジャッジ日時 2024-11-15 12:51:19
合計ジャッジ時間 2,166 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,140 KB
testcase_01 AC 35 ms
52,840 KB
testcase_02 AC 35 ms
51,872 KB
testcase_03 AC 34 ms
52,980 KB
testcase_04 AC 36 ms
52,868 KB
testcase_05 AC 39 ms
53,100 KB
testcase_06 AC 35 ms
52,464 KB
testcase_07 AC 36 ms
52,824 KB
testcase_08 AC 34 ms
52,904 KB
testcase_09 AC 36 ms
52,800 KB
testcase_10 AC 40 ms
54,636 KB
testcase_11 AC 95 ms
76,104 KB
testcase_12 AC 96 ms
76,248 KB
testcase_13 AC 96 ms
76,428 KB
testcase_14 AC 98 ms
76,836 KB
testcase_15 AC 99 ms
76,284 KB
testcase_16 AC 120 ms
76,604 KB
testcase_17 AC 129 ms
76,564 KB
testcase_18 AC 129 ms
76,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 8)

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

s = set()
parent = [-1] * N
def find(i):
    if parent[i] < 0: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