結果

問題 No.1647 Travel in Mitaru city 2
ユーザー sotanishysotanishy
提出日時 2021-08-15 00:26:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,019 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 135,132 KB
最終ジャッジ日時 2024-10-06 04:26:29
合計ジャッジ時間 22,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,704 KB
testcase_01 AC 38 ms
52,464 KB
testcase_02 AC 37 ms
53,076 KB
testcase_03 AC 39 ms
52,956 KB
testcase_04 AC 50 ms
65,256 KB
testcase_05 AC 40 ms
52,848 KB
testcase_06 AC 40 ms
53,140 KB
testcase_07 AC 51 ms
65,980 KB
testcase_08 AC 391 ms
129,176 KB
testcase_09 WA -
testcase_10 AC 388 ms
129,924 KB
testcase_11 AC 353 ms
125,776 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 415 ms
132,004 KB
testcase_15 AC 398 ms
131,616 KB
testcase_16 AC 372 ms
127,684 KB
testcase_17 AC 366 ms
125,964 KB
testcase_18 WA -
testcase_19 AC 387 ms
129,428 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 418 ms
132,664 KB
testcase_23 AC 406 ms
134,088 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 419 ms
133,828 KB
testcase_27 AC 419 ms
134,892 KB
testcase_28 AC 409 ms
135,008 KB
testcase_29 AC 407 ms
134,836 KB
testcase_30 AC 309 ms
116,804 KB
testcase_31 AC 413 ms
134,996 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 415 ms
134,832 KB
testcase_35 WA -
testcase_36 AC 403 ms
135,132 KB
testcase_37 AC 397 ms
134,784 KB
testcase_38 AC 420 ms
127,144 KB
testcase_39 WA -
testcase_40 AC 425 ms
125,892 KB
testcase_41 WA -
testcase_42 AC 422 ms
126,604 KB
testcase_43 AC 45 ms
60,376 KB
testcase_44 AC 48 ms
69,036 KB
testcase_45 AC 392 ms
124,852 KB
testcase_46 AC 415 ms
127,396 KB
testcase_47 AC 404 ms
127,416 KB
testcase_48 AC 410 ms
126,932 KB
testcase_49 AC 373 ms
124,644 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 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