結果

問題 No.1647 Travel in Mitaru city 2
ユーザー sotanishysotanishy
提出日時 2021-08-15 00:18:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 803 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 117,380 KB
最終ジャッジ日時 2024-10-06 04:10:30
合計ジャッジ時間 17,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,828 KB
testcase_01 AC 37 ms
52,532 KB
testcase_02 AC 36 ms
53,224 KB
testcase_03 AC 38 ms
53,312 KB
testcase_04 AC 45 ms
64,480 KB
testcase_05 AC 37 ms
54,524 KB
testcase_06 AC 38 ms
54,812 KB
testcase_07 AC 45 ms
63,932 KB
testcase_08 AC 247 ms
112,936 KB
testcase_09 WA -
testcase_10 AC 260 ms
112,988 KB
testcase_11 AC 237 ms
109,660 KB
testcase_12 AC 239 ms
104,892 KB
testcase_13 WA -
testcase_14 AC 260 ms
114,636 KB
testcase_15 AC 263 ms
114,472 KB
testcase_16 AC 253 ms
111,324 KB
testcase_17 AC 234 ms
109,324 KB
testcase_18 WA -
testcase_19 AC 283 ms
111,748 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 302 ms
115,504 KB
testcase_23 AC 271 ms
116,276 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 266 ms
116,268 KB
testcase_27 AC 274 ms
117,356 KB
testcase_28 AC 265 ms
117,052 KB
testcase_29 AC 275 ms
117,380 KB
testcase_30 AC 195 ms
100,496 KB
testcase_31 AC 263 ms
117,076 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 270 ms
116,992 KB
testcase_35 WA -
testcase_36 AC 262 ms
117,052 KB
testcase_37 AC 264 ms
117,016 KB
testcase_38 AC 249 ms
109,444 KB
testcase_39 WA -
testcase_40 AC 250 ms
108,804 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 42 ms
60,112 KB
testcase_44 AC 45 ms
65,884 KB
testcase_45 WA -
testcase_46 AC 262 ms
101,216 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 165 ms
97,996 KB
testcase_50 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H, W, N = map(int, input().split())
G = [[] for _ in range(H+W)]
for i in range(N):
    x, y = map(lambda x: int(x) - 1, input().split())
    G[x].append((H+y, i))
    G[H+y].append((x, i))
prev = [None] * (H+W)
for s in range(H):
    if prev[s] is not None:
        continue
    st = [(s, -1, -1)]
    while st:
        v, p, j = st.pop()
        prev[v] = (p, j)
        for u, i in G[v]:
            if (u, i) == prev[v]:
                continue
            if prev[u] is not None:
                ans = [i]
                while v != s:
                    v, i = prev[v]
                    ans.append(i)
                print(len(ans))
                print(*map(lambda x: x + 1, ans[::-1]))
                exit()
            st.append((u, v, i))
print(-1)
0