結果

問題 No.1647 Travel in Mitaru city 2
ユーザー MitarushiMitarushi
提出日時 2021-07-27 23:36:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 680 ms / 2,500 ms
コード長 874 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 245,592 KB
最終ジャッジ日時 2024-10-03 15:41:24
合計ジャッジ時間 21,036 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,204 KB
testcase_01 AC 36 ms
52,804 KB
testcase_02 AC 35 ms
53,696 KB
testcase_03 AC 38 ms
53,808 KB
testcase_04 AC 59 ms
73,340 KB
testcase_05 AC 37 ms
54,864 KB
testcase_06 AC 37 ms
54,948 KB
testcase_07 AC 69 ms
73,828 KB
testcase_08 AC 462 ms
173,172 KB
testcase_09 AC 415 ms
167,844 KB
testcase_10 AC 481 ms
175,940 KB
testcase_11 AC 327 ms
134,208 KB
testcase_12 AC 315 ms
128,908 KB
testcase_13 AC 325 ms
140,536 KB
testcase_14 AC 541 ms
189,004 KB
testcase_15 AC 468 ms
178,536 KB
testcase_16 AC 425 ms
180,648 KB
testcase_17 AC 335 ms
142,640 KB
testcase_18 AC 317 ms
130,952 KB
testcase_19 AC 424 ms
178,900 KB
testcase_20 AC 395 ms
159,012 KB
testcase_21 AC 458 ms
187,396 KB
testcase_22 AC 583 ms
202,968 KB
testcase_23 AC 484 ms
199,452 KB
testcase_24 AC 442 ms
170,512 KB
testcase_25 AC 406 ms
166,564 KB
testcase_26 AC 487 ms
198,736 KB
testcase_27 AC 462 ms
200,276 KB
testcase_28 AC 487 ms
206,808 KB
testcase_29 AC 505 ms
207,256 KB
testcase_30 AC 427 ms
175,920 KB
testcase_31 AC 489 ms
206,012 KB
testcase_32 AC 441 ms
195,320 KB
testcase_33 AC 410 ms
160,368 KB
testcase_34 AC 501 ms
206,932 KB
testcase_35 AC 402 ms
163,528 KB
testcase_36 AC 493 ms
200,160 KB
testcase_37 AC 480 ms
206,872 KB
testcase_38 AC 589 ms
198,400 KB
testcase_39 AC 333 ms
133,028 KB
testcase_40 AC 385 ms
154,608 KB
testcase_41 AC 582 ms
209,956 KB
testcase_42 AC 680 ms
245,592 KB
testcase_43 AC 39 ms
61,400 KB
testcase_44 AC 40 ms
66,884 KB
testcase_45 AC 217 ms
98,508 KB
testcase_46 AC 342 ms
100,740 KB
testcase_47 AC 248 ms
100,128 KB
testcase_48 AC 313 ms
101,228 KB
testcase_49 AC 202 ms
98,308 KB
testcase_50 AC 207 ms
98,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000)


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