結果
問題 | No.583 鉄道同好会 |
ユーザー | convexineq |
提出日時 | 2021-03-04 16:32:45 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 195 ms / 2,000 ms |
コード長 | 996 bytes |
コンパイル時間 | 215 ms |
コンパイル使用メモリ | 82,148 KB |
実行使用メモリ | 106,880 KB |
最終ジャッジ日時 | 2024-10-05 01:14:42 |
合計ジャッジ時間 | 2,682 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,224 KB |
testcase_01 | AC | 36 ms
52,096 KB |
testcase_02 | AC | 37 ms
51,712 KB |
testcase_03 | AC | 40 ms
52,224 KB |
testcase_04 | AC | 35 ms
52,096 KB |
testcase_05 | AC | 37 ms
51,968 KB |
testcase_06 | AC | 36 ms
52,608 KB |
testcase_07 | AC | 36 ms
52,224 KB |
testcase_08 | AC | 35 ms
51,840 KB |
testcase_09 | AC | 36 ms
52,608 KB |
testcase_10 | AC | 41 ms
53,376 KB |
testcase_11 | AC | 83 ms
76,928 KB |
testcase_12 | AC | 95 ms
78,848 KB |
testcase_13 | AC | 97 ms
78,848 KB |
testcase_14 | AC | 111 ms
79,104 KB |
testcase_15 | AC | 121 ms
78,592 KB |
testcase_16 | AC | 139 ms
84,352 KB |
testcase_17 | AC | 155 ms
84,224 KB |
testcase_18 | AC | 195 ms
106,880 KB |
ソースコード
def find_Eulerian_trail_undirected(s,g,m): edge_valid = [1]*m path = [] q = [s] while q: while g[q[-1]]: u,idx = g[q[-1]].pop() if edge_valid[idx]: edge_valid[idx] = 0 q.append(u) break else: path.append(q.pop()) return path[::-1] def Eulerian_trail_undirected(g,m): n = len(g) deg = [len(gi)%2 for gi in g] cnt = deg.count(1) if cnt > 2: return False elif cnt == 2: s = deg.index(1) elif cnt == 0: for s in range(n): if g[s]: break path = find_Eulerian_trail_undirected(s,g,m) if len(path) != m+1: return False else: return path import sys 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_trail_undirected(g,m) if path == False: print("NO") else: print("YES")