結果

問題 No.583 鉄道同好会
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-17 13:14:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 80,692 KB
最終ジャッジ日時 2024-06-01 15:06:06
合計ジャッジ時間 2,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,836 KB
testcase_01 AC 43 ms
53,208 KB
testcase_02 AC 42 ms
52,740 KB
testcase_03 AC 39 ms
52,132 KB
testcase_04 AC 40 ms
53,232 KB
testcase_05 AC 39 ms
52,740 KB
testcase_06 AC 39 ms
52,948 KB
testcase_07 AC 40 ms
52,936 KB
testcase_08 AC 40 ms
53,108 KB
testcase_09 AC 40 ms
52,620 KB
testcase_10 AC 42 ms
54,332 KB
testcase_11 AC 85 ms
76,800 KB
testcase_12 AC 92 ms
76,920 KB
testcase_13 AC 91 ms
76,892 KB
testcase_14 AC 90 ms
76,760 KB
testcase_15 AC 99 ms
77,376 KB
testcase_16 AC 126 ms
80,632 KB
testcase_17 AC 134 ms
80,216 KB
testcase_18 AC 135 ms
80,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
stations = [[] for i in range(n)]
ans =[0]*n

for i in range(m):
    a,b=map(int,input().split())
    stations[a].append(b)
    stations[b].append(a)
    ans[a] = 1
    ans[b] = 1
    if i == 0:start = a
    

cnt=0
for i in stations:
    if len(i)%2 == 1:
        cnt+=1

f=[0]*n
def  dfs(x):
    for i in stations[x]:
        if f[i] == 0:
            f[i] = 1
            dfs(i)
f[start] = 1
dfs(start)

if (f == ans) and (cnt == 0 or cnt == 2):
    print('YES')
else:
    print('NO')
    
0