結果
問題 | No.583 鉄道同好会 |
ユーザー | convexineq |
提出日時 | 2021-03-04 11:19:41 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,077 bytes |
コンパイル時間 | 174 ms |
コンパイル使用メモリ | 82,104 KB |
実行使用メモリ | 93,424 KB |
最終ジャッジ日時 | 2024-10-04 15:48:51 |
合計ジャッジ時間 | 2,623 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
52,656 KB |
testcase_01 | AC | 30 ms
52,208 KB |
testcase_02 | AC | 32 ms
53,816 KB |
testcase_03 | AC | 33 ms
52,272 KB |
testcase_04 | AC | 35 ms
53,360 KB |
testcase_05 | AC | 32 ms
53,492 KB |
testcase_06 | AC | 31 ms
52,620 KB |
testcase_07 | AC | 32 ms
53,028 KB |
testcase_08 | AC | 33 ms
53,776 KB |
testcase_09 | AC | 32 ms
53,416 KB |
testcase_10 | AC | 34 ms
53,876 KB |
testcase_11 | AC | 69 ms
77,128 KB |
testcase_12 | AC | 86 ms
79,132 KB |
testcase_13 | AC | 82 ms
79,384 KB |
testcase_14 | AC | 88 ms
79,296 KB |
testcase_15 | AC | 93 ms
79,120 KB |
testcase_16 | AC | 116 ms
85,488 KB |
testcase_17 | AC | 131 ms
85,324 KB |
testcase_18 | RE | - |
ソースコード
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 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")