結果

問題 No.1647 Travel in Mitaru city 2
ユーザー nephrologistnephrologist
提出日時 2021-08-14 16:12:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,627 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 300,296 KB
最終ジャッジ日時 2024-10-05 11:34:10
合計ジャッジ時間 24,594 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
78,336 KB
testcase_01 AC 57 ms
80,256 KB
testcase_02 AC 53 ms
73,232 KB
testcase_03 AC 56 ms
73,728 KB
testcase_04 WA -
testcase_05 AC 55 ms
73,216 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 369 ms
149,512 KB
testcase_09 WA -
testcase_10 AC 373 ms
151,992 KB
testcase_11 AC 330 ms
144,768 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 388 ms
149,860 KB
testcase_15 AC 381 ms
150,040 KB
testcase_16 AC 431 ms
147,188 KB
testcase_17 AC 552 ms
151,128 KB
testcase_18 WA -
testcase_19 AC 361 ms
150,092 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 388 ms
149,312 KB
testcase_23 AC 391 ms
148,624 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 390 ms
149,336 KB
testcase_27 AC 383 ms
149,304 KB
testcase_28 AC 386 ms
151,252 KB
testcase_29 AC 387 ms
150,856 KB
testcase_30 WA -
testcase_31 AC 390 ms
151,200 KB
testcase_32 AC 345 ms
151,628 KB
testcase_33 WA -
testcase_34 AC 396 ms
150,920 KB
testcase_35 WA -
testcase_36 AC 381 ms
151,208 KB
testcase_37 AC 388 ms
151,428 KB
testcase_38 AC 363 ms
145,608 KB
testcase_39 WA -
testcase_40 AC 366 ms
145,660 KB
testcase_41 WA -
testcase_42 AC 362 ms
145,584 KB
testcase_43 AC 66 ms
93,952 KB
testcase_44 AC 50 ms
73,088 KB
testcase_45 WA -
testcase_46 TLE -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline
h, w, n = map(int, input().split())
num = 10 ** 5
graph = [[] for _ in range(2 * num)]
start = set()
edges = {}
e = {}
for i in range(n):
    a, b = map(int, input().split())
    a, b = a - 1, b - 1
    b += num
    graph[a].append(b)
    graph[b].append(a)
    start.add(a)
    edges[(a, b)] = i
    edges[(b, a)] = i
    e[i] = (a, b)


used = [0] * num * 2


# graph and n is necessary
def dfs(start):
    par = [-1] * num * 2
    depth = [-1] * num * 2
    size = [0] * num * 2
    stack = []
    stack.append(~start)
    stack.append(start)
    euler = []
    while stack:
        v = stack.pop()
        if v >= 0:
            d = depth[v]
            used[v] = 1
            euler.append(v)
            for u in graph[v]:
                if par[v] == u:
                    continue
                if used[u]:
                    euler.append(u)
                    return 1, euler
                par[u] = v
                stack.append(~u)
                stack.append(u)
        else:
            a = ~v
            if euler:
                euler.pop()

    return 0, []


for s in start:
    if used[s]:
        continue
    flag, euler = dfs(s)
    if flag:
        ans = []
        for u, v in zip(euler, euler[1:]):
            ans.append(edges[(u, v)] + 1)
        if len(ans) % 2:
            continue
        if len(ans) >= 4:
            a, b = ans[0], ans[1]
            x1, y1 = e[a - 1]
            x2, y2 = e[b - 1]
            if y1 == y2:
                ans = ans[::-1]
            print(len(ans))
            print(*ans)
            exit()


print(-1)

0