結果

問題 No.583 鉄道同好会
ユーザー mkawa2mkawa2
提出日時 2020-01-05 18:36:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 635 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 315,904 KB
最終ジャッジ日時 2024-11-22 23:03:24
合計ジャッジ時間 9,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 RE -
testcase_05 AC 30 ms
10,752 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 71 ms
12,288 KB
testcase_12 AC 89 ms
12,928 KB
testcase_13 AC 89 ms
13,056 KB
testcase_14 AC 88 ms
12,928 KB
testcase_15 AC 104 ms
13,696 KB
testcase_16 AC 175 ms
16,512 KB
testcase_17 AC 205 ms
17,536 KB
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)
from collections import *
def MI(): return map(int, sys.stdin.readline().split())

def main():
    def dfs(u,pu=-1):
        res=1
        for cu in to[u]:
            if cu==pu:continue
            res+=dfs(cu,u)
        return res

    to=defaultdict(list)
    n,m=MI()
    ss=set()
    for _ in range(m):
        a,b=MI()
        to[a].append(b)
        to[b].append(a)
        ss.add(a)
        ss.add(b)
    odd=sum(len(x)%2 for x in to.values())
    sz=len(ss)
    root=ss.pop()
    if odd==1 or odd>2 or dfs(root)!=sz:
        print("NO")
    else:
        print("YES")
        
main()
0