結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,624 KB
testcase_01 AC 34 ms
52,580 KB
testcase_02 AC 34 ms
51,872 KB
testcase_03 AC 37 ms
54,384 KB
testcase_04 AC 59 ms
73,048 KB
testcase_05 AC 35 ms
53,848 KB
testcase_06 AC 38 ms
54,708 KB
testcase_07 AC 60 ms
74,160 KB
testcase_08 AC 426 ms
173,788 KB
testcase_09 AC 365 ms
167,548 KB
testcase_10 AC 417 ms
175,076 KB
testcase_11 AC 295 ms
133,960 KB
testcase_12 AC 307 ms
127,984 KB
testcase_13 AC 299 ms
139,012 KB
testcase_14 AC 552 ms
189,472 KB
testcase_15 AC 475 ms
177,628 KB
testcase_16 AC 403 ms
179,516 KB
testcase_17 AC 323 ms
142,968 KB
testcase_18 AC 308 ms
130,932 KB
testcase_19 AC 404 ms
179,476 KB
testcase_20 AC 376 ms
158,868 KB
testcase_21 AC 425 ms
187,688 KB
testcase_22 AC 571 ms
201,480 KB
testcase_23 AC 460 ms
199,040 KB
testcase_24 AC 434 ms
170,488 KB
testcase_25 AC 424 ms
166,424 KB
testcase_26 AC 472 ms
198,956 KB
testcase_27 AC 444 ms
200,316 KB
testcase_28 AC 454 ms
206,228 KB
testcase_29 AC 485 ms
207,152 KB
testcase_30 AC 433 ms
177,016 KB
testcase_31 AC 480 ms
206,992 KB
testcase_32 AC 416 ms
194,956 KB
testcase_33 AC 370 ms
159,948 KB
testcase_34 AC 448 ms
206,320 KB
testcase_35 AC 399 ms
164,284 KB
testcase_36 AC 455 ms
199,152 KB
testcase_37 AC 458 ms
205,496 KB
testcase_38 AC 571 ms
210,752 KB
testcase_39 AC 320 ms
131,916 KB
testcase_40 AC 363 ms
154,632 KB
testcase_41 AC 508 ms
196,020 KB
testcase_42 AC 485 ms
165,572 KB
testcase_43 AC 41 ms
60,008 KB
testcase_44 AC 40 ms
66,020 KB
testcase_45 AC 212 ms
98,576 KB
testcase_46 AC 929 ms
112,680 KB
testcase_47 AC 250 ms
100,168 KB
testcase_48 AC 503 ms
104,992 KB
testcase_49 AC 212 ms
98,700 KB
testcase_50 AC 210 ms
98,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(500000)


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
    visited[i] = True

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

        t, start = dfs(j, i)
        if start != -1:
            t.append(idx)

            if start == i:
                output(t, i < h)
                exit()

            return t, start

    return [], -1


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