結果

問題 No.583 鉄道同好会
ユーザー lloyzlloyz
提出日時 2022-09-29 00:51:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-06-02 01:47:12
合計ジャッジ時間 3,818 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 27 ms
11,008 KB
testcase_11 AC 133 ms
12,416 KB
testcase_12 AC 167 ms
13,312 KB
testcase_13 AC 168 ms
13,184 KB
testcase_14 AC 171 ms
13,312 KB
testcase_15 AC 211 ms
13,952 KB
testcase_16 AC 384 ms
16,640 KB
testcase_17 AC 461 ms
17,792 KB
testcase_18 AC 463 ms
17,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n, m = map(int, input().split())
Edge = defaultdict(list)
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    Edge[u].append(v)
    Edge[v].append(u)
Stack = [u]
seen = set([u])
while Stack:
    cp = Stack.pop()
    for np in Edge[cp]:
        if np in seen:
            continue
        seen.add(np)
        Stack.append(np)

odd_n = 0
for i in range(n):
    if i not in seen and Edge[i]:
        print("NO")
        exit()
    if len(Edge[i]) % 2 == 1:
        odd_n += 1
if odd_n <= 2:
    print("YES")
else:
    print("NO")
0