結果

問題 No.583 鉄道同好会
ユーザー 👑 rin204rin204
提出日時 2022-07-06 07:20:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 593 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 80,084 KB
最終ジャッジ日時 2024-12-18 01:27:12
合計ジャッジ時間 2,165 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,428 KB
testcase_01 AC 41 ms
52,356 KB
testcase_02 AC 38 ms
52,476 KB
testcase_03 AC 38 ms
51,940 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,812 KB
testcase_06 AC 37 ms
52,416 KB
testcase_07 AC 37 ms
52,208 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 39 ms
53,768 KB
testcase_11 AC 80 ms
76,360 KB
testcase_12 AC 89 ms
77,056 KB
testcase_13 AC 85 ms
76,956 KB
testcase_14 AC 86 ms
77,580 KB
testcase_15 AC 96 ms
76,944 KB
testcase_16 AC 126 ms
80,084 KB
testcase_17 AC 141 ms
80,028 KB
testcase_18 AC 133 ms
79,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append(v)
    edges[v].append(u)

stack = [u]
used = [False] * n
used[u] = True
while stack:
    pos = stack.pop()
    for npos in edges[pos]:
        if used[npos]:
            continue
        used[npos] = True
        stack.append(npos)
odd = 0
for i in range(n):
    if not used[npos] and edges[npos]:
        print("NO")
        exit()
    if len(edges[npos]) & 1:
        odd += 1
if odd <= 2:
    print("YES")
else:
    print("NO")
0