結果

問題 No.1647 Travel in Mitaru city 2
ユーザー MitarushiMitarushi
提出日時 2021-07-28 08:39:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 803 ms / 2,500 ms
コード長 934 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 73,600 KB
最終ジャッジ日時 2024-10-13 03:12:35
合計ジャッジ時間 32,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 36 ms
11,136 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 39 ms
11,392 KB
testcase_08 AC 720 ms
68,480 KB
testcase_09 AC 662 ms
63,616 KB
testcase_10 AC 722 ms
68,480 KB
testcase_11 AC 594 ms
58,112 KB
testcase_12 AC 555 ms
57,088 KB
testcase_13 AC 622 ms
61,044 KB
testcase_14 AC 749 ms
70,016 KB
testcase_15 AC 737 ms
69,376 KB
testcase_16 AC 694 ms
66,304 KB
testcase_17 AC 626 ms
60,912 KB
testcase_18 AC 630 ms
59,776 KB
testcase_19 AC 754 ms
73,592 KB
testcase_20 AC 708 ms
66,816 KB
testcase_21 AC 759 ms
71,936 KB
testcase_22 AC 752 ms
71,552 KB
testcase_23 AC 761 ms
71,808 KB
testcase_24 AC 713 ms
67,200 KB
testcase_25 AC 733 ms
68,864 KB
testcase_26 AC 757 ms
71,808 KB
testcase_27 AC 767 ms
72,320 KB
testcase_28 AC 779 ms
73,472 KB
testcase_29 AC 779 ms
73,600 KB
testcase_30 AC 742 ms
70,144 KB
testcase_31 AC 779 ms
73,600 KB
testcase_32 AC 788 ms
73,472 KB
testcase_33 AC 712 ms
67,968 KB
testcase_34 AC 803 ms
73,600 KB
testcase_35 AC 726 ms
68,352 KB
testcase_36 AC 787 ms
73,472 KB
testcase_37 AC 778 ms
73,600 KB
testcase_38 AC 710 ms
64,512 KB
testcase_39 AC 652 ms
60,416 KB
testcase_40 AC 697 ms
63,872 KB
testcase_41 AC 670 ms
60,416 KB
testcase_42 AC 704 ms
64,128 KB
testcase_43 AC 32 ms
10,752 KB
testcase_44 AC 114 ms
26,368 KB
testcase_45 AC 500 ms
52,224 KB
testcase_46 AC 654 ms
52,352 KB
testcase_47 AC 512 ms
52,352 KB
testcase_48 AC 562 ms
52,352 KB
testcase_49 AC 498 ms
52,224 KB
testcase_50 AC 507 ms
52,352 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