結果

問題 No.1647 Travel in Mitaru city 2
ユーザー MitarushiMitarushi
提出日時 2021-07-28 07:18:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 805 ms / 2,500 ms
コード長 873 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 244,608 KB
最終ジャッジ日時 2024-10-03 15:41:55
合計ジャッジ時間 24,212 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,336 KB
testcase_01 AC 38 ms
53,508 KB
testcase_02 AC 37 ms
52,824 KB
testcase_03 AC 41 ms
54,432 KB
testcase_04 AC 67 ms
71,964 KB
testcase_05 AC 40 ms
54,312 KB
testcase_06 AC 43 ms
55,592 KB
testcase_07 AC 69 ms
73,864 KB
testcase_08 AC 498 ms
173,460 KB
testcase_09 AC 463 ms
167,168 KB
testcase_10 AC 498 ms
175,616 KB
testcase_11 AC 367 ms
132,608 KB
testcase_12 AC 363 ms
127,616 KB
testcase_13 AC 381 ms
139,264 KB
testcase_14 AC 615 ms
188,928 KB
testcase_15 AC 514 ms
177,408 KB
testcase_16 AC 496 ms
178,944 KB
testcase_17 AC 391 ms
142,464 KB
testcase_18 AC 367 ms
129,920 KB
testcase_19 AC 492 ms
178,176 KB
testcase_20 AC 440 ms
158,184 KB
testcase_21 AC 515 ms
186,496 KB
testcase_22 AC 662 ms
202,624 KB
testcase_23 AC 538 ms
198,400 KB
testcase_24 AC 499 ms
170,368 KB
testcase_25 AC 456 ms
165,376 KB
testcase_26 AC 544 ms
197,888 KB
testcase_27 AC 548 ms
200,192 KB
testcase_28 AC 553 ms
205,824 KB
testcase_29 AC 560 ms
206,276 KB
testcase_30 AC 504 ms
176,000 KB
testcase_31 AC 566 ms
205,696 KB
testcase_32 AC 521 ms
195,328 KB
testcase_33 AC 459 ms
159,744 KB
testcase_34 AC 555 ms
205,696 KB
testcase_35 AC 467 ms
163,364 KB
testcase_36 AC 553 ms
199,296 KB
testcase_37 AC 557 ms
205,568 KB
testcase_38 AC 666 ms
197,760 KB
testcase_39 AC 410 ms
131,328 KB
testcase_40 AC 475 ms
154,112 KB
testcase_41 AC 680 ms
209,408 KB
testcase_42 AC 805 ms
244,608 KB
testcase_43 AC 47 ms
60,160 KB
testcase_44 AC 46 ms
65,280 KB
testcase_45 AC 264 ms
98,560 KB
testcase_46 AC 425 ms
100,736 KB
testcase_47 AC 306 ms
100,044 KB
testcase_48 AC 378 ms
101,248 KB
testcase_49 AC 268 ms
98,560 KB
testcase_50 AC 275 ms
98,816 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
    is_h = i < h
    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, is_h)
                exit()

            return t, start

    return [], -1


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