結果

問題 No.1647 Travel in Mitaru city 2
ユーザー MitarushiMitarushi
提出日時 2021-07-28 08:19:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 706 ms / 2,500 ms
コード長 857 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 210,048 KB
最終ジャッジ日時 2024-10-03 15:47:06
合計ジャッジ時間 23,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 39 ms
53,632 KB
testcase_04 AC 64 ms
71,936 KB
testcase_05 AC 40 ms
53,248 KB
testcase_06 AC 41 ms
54,016 KB
testcase_07 AC 66 ms
73,984 KB
testcase_08 AC 493 ms
173,296 KB
testcase_09 AC 441 ms
167,296 KB
testcase_10 AC 485 ms
175,104 KB
testcase_11 AC 351 ms
132,480 KB
testcase_12 AC 349 ms
127,488 KB
testcase_13 AC 371 ms
139,520 KB
testcase_14 AC 600 ms
189,056 KB
testcase_15 AC 496 ms
177,024 KB
testcase_16 AC 487 ms
178,688 KB
testcase_17 AC 381 ms
142,464 KB
testcase_18 AC 361 ms
130,176 KB
testcase_19 AC 484 ms
177,920 KB
testcase_20 AC 445 ms
158,336 KB
testcase_21 AC 505 ms
186,240 KB
testcase_22 AC 662 ms
201,088 KB
testcase_23 AC 536 ms
198,016 KB
testcase_24 AC 503 ms
169,856 KB
testcase_25 AC 460 ms
164,992 KB
testcase_26 AC 544 ms
198,016 KB
testcase_27 AC 538 ms
199,808 KB
testcase_28 AC 575 ms
205,696 KB
testcase_29 AC 544 ms
205,824 KB
testcase_30 AC 477 ms
175,744 KB
testcase_31 AC 545 ms
206,208 KB
testcase_32 AC 501 ms
195,200 KB
testcase_33 AC 438 ms
160,128 KB
testcase_34 AC 541 ms
206,080 KB
testcase_35 AC 459 ms
162,888 KB
testcase_36 AC 544 ms
198,912 KB
testcase_37 AC 548 ms
205,184 KB
testcase_38 AC 706 ms
210,048 KB
testcase_39 AC 396 ms
132,096 KB
testcase_40 AC 457 ms
153,984 KB
testcase_41 AC 611 ms
195,712 KB
testcase_42 AC 557 ms
164,736 KB
testcase_43 AC 41 ms
59,008 KB
testcase_44 AC 45 ms
65,024 KB
testcase_45 AC 265 ms
98,688 KB
testcase_46 AC 399 ms
100,552 KB
testcase_47 AC 289 ms
100,200 KB
testcase_48 AC 351 ms
100,564 KB
testcase_49 AC 259 ms
98,560 KB
testcase_50 AC 261 ms
98,560 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]:
        dfs(i)
print(-1)
0