結果

問題 No.1647 Travel in Mitaru city 2
ユーザー H3PO4H3PO4
提出日時 2024-04-07 09:43:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,252 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 135,176 KB
最終ジャッジ日時 2024-10-01 04:24:39
合計ジャッジ時間 21,218 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,516 KB
testcase_01 AC 43 ms
55,036 KB
testcase_02 AC 41 ms
54,652 KB
testcase_03 AC 43 ms
56,564 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 364 ms
132,788 KB
testcase_09 AC 319 ms
129,160 KB
testcase_10 AC 383 ms
132,620 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 325 ms
132,532 KB
testcase_14 AC 387 ms
132,792 KB
testcase_15 AC 396 ms
132,584 KB
testcase_16 AC 379 ms
132,408 KB
testcase_17 AC 365 ms
129,376 KB
testcase_18 AC 352 ms
133,276 KB
testcase_19 AC 350 ms
133,208 KB
testcase_20 AC 323 ms
133,164 KB
testcase_21 AC 332 ms
133,248 KB
testcase_22 AC 400 ms
133,208 KB
testcase_23 AC 412 ms
133,172 KB
testcase_24 AC 393 ms
133,196 KB
testcase_25 AC 403 ms
133,228 KB
testcase_26 AC 409 ms
133,244 KB
testcase_27 AC 404 ms
133,128 KB
testcase_28 AC 403 ms
133,476 KB
testcase_29 AC 386 ms
133,212 KB
testcase_30 AC 320 ms
133,164 KB
testcase_31 AC 413 ms
133,240 KB
testcase_32 AC 328 ms
133,196 KB
testcase_33 AC 371 ms
133,184 KB
testcase_34 AC 415 ms
133,100 KB
testcase_35 AC 320 ms
133,236 KB
testcase_36 AC 403 ms
133,140 KB
testcase_37 AC 409 ms
133,404 KB
testcase_38 AC 393 ms
133,248 KB
testcase_39 AC 344 ms
133,944 KB
testcase_40 AC 402 ms
133,332 KB
testcase_41 AC 384 ms
133,352 KB
testcase_42 AC 382 ms
133,292 KB
testcase_43 AC 46 ms
63,708 KB
testcase_44 AC 73 ms
99,980 KB
testcase_45 AC 287 ms
135,176 KB
testcase_46 AC 398 ms
135,048 KB
testcase_47 AC 303 ms
135,084 KB
testcase_48 AC 329 ms
135,092 KB
testcase_49 WA -
testcase_50 AC 278 ms
132,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


def dfs(H, W, G):
    que = deque()
    parents = [None] * (H + W)
    nonvisited = set(range(H + W))
    while nonvisited:
        x = next(iter(nonvisited))  # get single element from set but not remove
        que.append((x, -1, -1))
        while que:
            x, p, j = que.pop()
            parents[x] = (p, j)
            nonvisited.remove(x)

            for y, i in G[x]:
                if parents[x] == (y, i):
                    continue
                if y in nonvisited:
                    que.append((y, x, i))
                else:
                    return x, y, i, parents
    print(-1)
    exit()


H, W, N = map(int, input().split())
G = [[] for _ in range(H + W)]
points = [None] * N
for i in range(1, N + 1):
    x, y = map(lambda x: int(x) - 1, input().split())
    y += H
    G[x].append((y, i))
    G[y].append((x, i))
    points[i - 1] = (x, y)

X, Y, I, parents = dfs(H, W, G)
path = [I]
while X != Y:
    path.append(parents[X][1])
    X, _ = parents[X]

if points[path[0] - 1][1] != points[path[1] - 1][1]:
    assert points[path[0] - 1][0] == points[path[1] - 1][0]
    path = path[::-1]  # pathは偶数長なので単に反転させるだけでよい
print(len(path))
print(*path)
0