結果

問題 No.583 鉄道同好会
ユーザー convexineqconvexineq
提出日時 2021-03-04 11:22:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 492 ms / 2,000 ms
コード長 1,117 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 203,420 KB
最終ジャッジ日時 2024-10-04 15:53:24
合計ジャッジ時間 3,197 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,044 KB
testcase_01 AC 41 ms
52,400 KB
testcase_02 AC 37 ms
53,084 KB
testcase_03 AC 36 ms
53,376 KB
testcase_04 AC 36 ms
52,620 KB
testcase_05 AC 38 ms
52,636 KB
testcase_06 AC 38 ms
52,396 KB
testcase_07 AC 39 ms
53,092 KB
testcase_08 AC 38 ms
53,344 KB
testcase_09 AC 38 ms
52,696 KB
testcase_10 AC 44 ms
55,544 KB
testcase_11 AC 78 ms
76,964 KB
testcase_12 AC 87 ms
79,172 KB
testcase_13 AC 91 ms
79,388 KB
testcase_14 AC 88 ms
79,160 KB
testcase_15 AC 99 ms
79,580 KB
testcase_16 AC 127 ms
85,188 KB
testcase_17 AC 147 ms
85,784 KB
testcase_18 AC 492 ms
203,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def find_Eulerian_path_undirected(s,g,edge_valid):
    def dfs(v):
        while g[v]:
            u,idx = g[v].pop()
            if edge_valid[idx]:
                edge_valid[idx] -= 1
                dfs(u)
        path.append(v)
    path = []
    dfs(s)
    return path[::-1]

def Eulerian_path_undirected(g,m):
    n = len(g)
    edge_valid = [1]*m
    deg = [len(gi)%2 for gi in g]
    used = [int(gi == []) for gi in g] # 辺が出ていない頂点は見ない
    cnt = deg.count(1)
    if cnt > 2:
        return False
    elif cnt == 2:
        s = deg.index(1)
    elif cnt == 0:
        s = used.index(0)
    
    path = find_Eulerian_path_undirected(s,g,edge_valid)
    if path == False: return False
    for v in path:
        used[v] = 1
    if any(ui==0 for ui in used): return False
    else: return path

import sys
sys.setrecursionlimit(10**6)
n,m = map(int,input().split())
g = [[] for _ in range(n)]
for i in range(m):
    x,y = map(int,input().split())
    g[x].append((y,i))
    g[y].append((x,i))

path = Eulerian_path_undirected(g,m)
if path == False:
    print("NO")
else:
    print("YES")
0