結果
問題 | No.1647 Travel in Mitaru city 2 |
ユーザー | Programmerryoki |
提出日時 | 2021-08-13 22:37:28 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,188 bytes |
コンパイル時間 | 247 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 100,096 KB |
最終ジャッジ日時 | 2024-10-03 20:32:40 |
合計ジャッジ時間 | 5,536 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
57,216 KB |
testcase_01 | AC | 40 ms
51,968 KB |
testcase_02 | AC | 35 ms
51,968 KB |
testcase_03 | AC | 42 ms
61,952 KB |
testcase_04 | AC | 70 ms
69,760 KB |
testcase_05 | AC | 39 ms
59,904 KB |
testcase_06 | AC | 46 ms
63,104 KB |
testcase_07 | AC | 93 ms
70,912 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
ソースコード
from sys import stdin, setrecursionlimit setrecursionlimit(10**6) input = stdin.readline H,W,N = [int(i) for i in input().split()] odd = {} even = {} points = [] for ind in range(N): x,y = [int(i) for i in input().split()] points.append((x,y)) if x not in even: even[x] = set() if y not in odd: odd[y] = set() for i,j in points: if i == x: even[i].add(ind+1) even[x].add(ind+1) if j == y: odd[j].add(ind+1) odd[y].add(ind+1) # print(odd) # print(even) ord = [] seen = set() start = 0 def dfs(x,y,order): global seen, ord rodd = len(seen)&1 graph = odd if rodd else even nxt = y if rodd else x for n in graph[nxt]: if n not in seen: seen.add(n) i,j = points[n-1] dfs(i,j,order+[n]) seen.remove(n) else: if n == start and len(order) >= 4: ord = order raise ConnectionError try: start = 1 seen.add(1) dfs(points[0][0], points[0][1], [1]) print(-1) except ConnectionError: print(len(ord)) print(" ".join(str(i) for i in ord)) exit()