結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 RE -
testcase_05 AC 27 ms
10,880 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 28 ms
11,008 KB
testcase_11 AC 67 ms
12,288 KB
testcase_12 AC 79 ms
13,056 KB
testcase_13 AC 78 ms
13,056 KB
testcase_14 AC 78 ms
13,056 KB
testcase_15 AC 94 ms
13,824 KB
testcase_16 AC 150 ms
16,768 KB
testcase_17 AC 187 ms
17,664 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