結果

問題 No.1647 Travel in Mitaru city 2
ユーザー MitarushiMitarushi
提出日時 2021-07-28 08:39:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 645 ms / 2,500 ms
コード長 934 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 246,656 KB
最終ジャッジ日時 2024-10-03 15:48:48
合計ジャッジ時間 19,147 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 34 ms
52,480 KB
testcase_04 AC 44 ms
65,280 KB
testcase_05 AC 34 ms
52,992 KB
testcase_06 AC 34 ms
53,376 KB
testcase_07 AC 45 ms
67,200 KB
testcase_08 AC 408 ms
184,192 KB
testcase_09 AC 360 ms
172,032 KB
testcase_10 AC 401 ms
178,816 KB
testcase_11 AC 275 ms
132,736 KB
testcase_12 AC 260 ms
121,728 KB
testcase_13 AC 291 ms
138,496 KB
testcase_14 AC 495 ms
197,632 KB
testcase_15 AC 425 ms
179,328 KB
testcase_16 AC 386 ms
184,704 KB
testcase_17 AC 283 ms
142,720 KB
testcase_18 AC 269 ms
130,560 KB
testcase_19 AC 365 ms
177,792 KB
testcase_20 AC 323 ms
159,104 KB
testcase_21 AC 394 ms
180,608 KB
testcase_22 AC 518 ms
199,424 KB
testcase_23 AC 399 ms
184,448 KB
testcase_24 AC 392 ms
165,376 KB
testcase_25 AC 374 ms
172,288 KB
testcase_26 AC 409 ms
185,728 KB
testcase_27 AC 420 ms
185,728 KB
testcase_28 AC 418 ms
194,560 KB
testcase_29 AC 409 ms
193,408 KB
testcase_30 AC 382 ms
174,336 KB
testcase_31 AC 421 ms
194,432 KB
testcase_32 AC 372 ms
184,704 KB
testcase_33 AC 345 ms
167,680 KB
testcase_34 AC 405 ms
194,176 KB
testcase_35 AC 368 ms
170,136 KB
testcase_36 AC 422 ms
191,104 KB
testcase_37 AC 448 ms
192,896 KB
testcase_38 AC 548 ms
198,912 KB
testcase_39 AC 291 ms
133,760 KB
testcase_40 AC 357 ms
149,504 KB
testcase_41 AC 597 ms
212,736 KB
testcase_42 AC 645 ms
246,656 KB
testcase_43 AC 41 ms
60,288 KB
testcase_44 AC 42 ms
65,152 KB
testcase_45 AC 183 ms
98,376 KB
testcase_46 AC 311 ms
100,736 KB
testcase_47 AC 198 ms
99,324 KB
testcase_48 AC 288 ms
100,724 KB
testcase_49 AC 179 ms
98,560 KB
testcase_50 AC 195 ms
98,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000)
input = sys.stdin.readline


h, w, n = map(int, input().split())

edge = [[] for _ in range(h + w)]

for idx in range(n):
    x, y = [int(i) - 1 for i in input().split()]
    y = y + h
    edge[x].append((y, idx))
    edge[y].append((x, idx))

visited = [False] * (h + w)


def output(t, is_h):
    t.reverse()
    if not is_h:
        t = t[1:] + t[:1]

    print(len(t))
    print(*(i+1 for i in t))


def dfs(i, prev=-1):
    if visited[i]:
        return [], i
    is_h = i < h
    visited[i] = True

    for j, idx in edge[i]:
        if j == prev:
            continue

        result = dfs(j, i)
        if result is not None:
            t, start = result
            t.append(idx)

            if start == i:
                output(t, is_h)
                exit()

            return t, start

    return None


for i in range(h + w):
    if not visited[i]:
        dfs(i)
print(-1)
0