結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,224 KB
testcase_01 AC 38 ms
52,700 KB
testcase_02 AC 39 ms
53,256 KB
testcase_03 AC 39 ms
52,532 KB
testcase_04 AC 39 ms
53,384 KB
testcase_05 AC 38 ms
53,284 KB
testcase_06 AC 39 ms
53,336 KB
testcase_07 AC 38 ms
52,740 KB
testcase_08 AC 39 ms
53,440 KB
testcase_09 AC 39 ms
53,312 KB
testcase_10 AC 42 ms
54,040 KB
testcase_11 AC 101 ms
76,352 KB
testcase_12 AC 107 ms
76,660 KB
testcase_13 AC 107 ms
76,420 KB
testcase_14 AC 105 ms
76,844 KB
testcase_15 AC 110 ms
76,504 KB
testcase_16 AC 135 ms
76,520 KB
testcase_17 AC 141 ms
76,648 KB
testcase_18 AC 144 ms
76,608 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