結果

問題 No.583 鉄道同好会
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-17 13:14:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-12-22 00:43:08
合計ジャッジ時間 2,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 46 ms
52,096 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 45 ms
53,120 KB
testcase_11 AC 96 ms
76,800 KB
testcase_12 AC 105 ms
77,312 KB
testcase_13 AC 103 ms
76,928 KB
testcase_14 AC 104 ms
76,800 KB
testcase_15 AC 110 ms
77,184 KB
testcase_16 AC 139 ms
80,384 KB
testcase_17 AC 149 ms
80,256 KB
testcase_18 AC 152 ms
80,384 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