結果

問題 No.1647 Travel in Mitaru city 2
ユーザー sotanishysotanishy
提出日時 2021-08-15 00:28:13
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,042 bytes
コンパイル時間 740 ms
コンパイル使用メモリ 81,724 KB
実行使用メモリ 135,180 KB
最終ジャッジ日時 2024-10-13 03:28:52
合計ジャッジ時間 21,685 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,780 KB
testcase_01 AC 41 ms
53,536 KB
testcase_02 AC 41 ms
52,396 KB
testcase_03 AC 40 ms
53,180 KB
testcase_04 AC 50 ms
64,180 KB
testcase_05 AC 39 ms
53,232 KB
testcase_06 AC 40 ms
53,888 KB
testcase_07 AC 52 ms
65,716 KB
testcase_08 AC 432 ms
129,108 KB
testcase_09 AC 402 ms
122,504 KB
testcase_10 AC 421 ms
129,908 KB
testcase_11 AC 384 ms
125,832 KB
testcase_12 AC 408 ms
119,580 KB
testcase_13 AC 419 ms
127,996 KB
testcase_14 AC 437 ms
132,052 KB
testcase_15 AC 435 ms
132,020 KB
testcase_16 AC 399 ms
127,012 KB
testcase_17 AC 402 ms
126,072 KB
testcase_18 AC 438 ms
130,828 KB
testcase_19 AC 413 ms
129,000 KB
testcase_20 AC 405 ms
120,304 KB
testcase_21 AC 412 ms
126,188 KB
testcase_22 AC 449 ms
133,232 KB
testcase_23 AC 455 ms
133,924 KB
testcase_24 AC 417 ms
124,216 KB
testcase_25 AC 412 ms
119,528 KB
testcase_26 AC 453 ms
133,688 KB
testcase_27 AC 438 ms
134,640 KB
testcase_28 AC 431 ms
134,944 KB
testcase_29 AC 429 ms
134,936 KB
testcase_30 AC 321 ms
116,664 KB
testcase_31 AC 431 ms
135,180 KB
testcase_32 AC 422 ms
126,656 KB
testcase_33 AC 404 ms
123,172 KB
testcase_34 AC 428 ms
134,724 KB
testcase_35 AC 415 ms
129,548 KB
testcase_36 AC 432 ms
134,792 KB
testcase_37 AC 426 ms
134,680 KB
testcase_38 AC 443 ms
126,704 KB
testcase_39 AC 437 ms
121,704 KB
testcase_40 AC 434 ms
125,712 KB
testcase_41 AC 419 ms
119,532 KB
testcase_42 AC 434 ms
126,820 KB
testcase_43 AC 47 ms
61,524 KB
testcase_44 AC 50 ms
68,396 KB
testcase_45 AC 400 ms
125,240 KB
testcase_46 AC 432 ms
127,428 KB
testcase_47 AC 439 ms
127,028 KB
testcase_48 AC 446 ms
127,288 KB
testcase_49 AC 406 ms
124,660 KB
testcase_50 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H, W, N = map(int, input().split())
G = [set() for _ in range(H+W)]
for i in range(N):
    x, y = map(lambda x: int(x) - 1, input().split())
    G[x].add((H+y, i))
    G[H+y].add((x, i))
st = []
for v in range(H+W):
    if len(G[v]) == 1:
        st.append(v)
while st:
    v = st.pop()
    for u, i in G[v]:
        G[u].remove((v, i))
        if len(G[u]) == 1:
            st.append(u)
    G[v] = set()
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 u == s:
                ans = [i]
                while v != s:
                    v, i = prev[v]
                    ans.append(i)
                print(len(ans))
                print(*map(lambda x: x + 1, ans[::-1]))
                exit()
            if prev[u] is None:
                st.append((u, v, i))
print(-1)
0