結果

問題 No.1647 Travel in Mitaru city 2
ユーザー rlangevinrlangevin
提出日時 2023-12-11 12:45:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,159 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 105,768 KB
最終ジャッジ日時 2024-09-27 04:28:45
合計ジャッジ時間 39,621 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 34 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 944 ms
97,696 KB
testcase_09 AC 846 ms
91,040 KB
testcase_10 AC 926 ms
98,276 KB
testcase_11 AC 690 ms
82,164 KB
testcase_12 AC 665 ms
81,260 KB
testcase_13 AC 703 ms
84,776 KB
testcase_14 AC 942 ms
100,760 KB
testcase_15 AC 957 ms
98,996 KB
testcase_16 AC 895 ms
94,468 KB
testcase_17 AC 718 ms
84,972 KB
testcase_18 AC 712 ms
84,368 KB
testcase_19 AC 830 ms
99,916 KB
testcase_20 AC 812 ms
94,484 KB
testcase_21 AC 875 ms
101,648 KB
testcase_22 AC 956 ms
101,772 KB
testcase_23 AC 973 ms
102,292 KB
testcase_24 AC 848 ms
95,380 KB
testcase_25 AC 897 ms
98,068 KB
testcase_26 AC 976 ms
102,416 KB
testcase_27 AC 987 ms
102,932 KB
testcase_28 AC 1,037 ms
105,596 KB
testcase_29 AC 1,024 ms
105,512 KB
testcase_30 AC 936 ms
99,748 KB
testcase_31 AC 1,026 ms
105,512 KB
testcase_32 AC 918 ms
103,976 KB
testcase_33 AC 872 ms
96,808 KB
testcase_34 AC 1,000 ms
105,508 KB
testcase_35 AC 895 ms
97,320 KB
testcase_36 AC 998 ms
105,768 KB
testcase_37 AC 1,017 ms
105,764 KB
testcase_38 AC 883 ms
91,736 KB
testcase_39 AC 765 ms
85,328 KB
testcase_40 AC 864 ms
90,828 KB
testcase_41 AC 811 ms
86,096 KB
testcase_42 AC 874 ms
91,088 KB
testcase_43 AC 33 ms
10,624 KB
testcase_44 AC 121 ms
27,904 KB
testcase_45 AC 585 ms
73,200 KB
testcase_46 AC 721 ms
73,324 KB
testcase_47 AC 595 ms
73,456 KB
testcase_48 AC 621 ms
73,460 KB
testcase_49 WA -
testcase_50 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**7)
from collections import *

H, W, N = map(int, input().split())
G = [[] for i in range(H + W)]
D = dict()
for i in range(N):
    x, y = map(int, input().split())
    x, y = x - 1, y - 1
    G[x].append(y + H)
    G[y + H].append(x)
    D[(x, y+H)] = i + 1
    D[(y+H, x)] = i + 1

seen = [0] * (H + W)
seen2 = [0] * (H + W)
temp = []

def dfs(s, p):
    for u in G[s]:
        if u == p:
            continue
        if seen[u]:
            if seen2[u]:
                ans = []
                now = u
                while temp[-1] != u:
                    ans.append(D[(now, temp[-1])])
                    now = temp.pop()
                ans.append(D[(now, u)])
                ans.reverse()
                print(len(ans))
                print(*ans)
                exit()
            continue
            
        seen[u] = 1
        seen2[u] = 1
        temp.append(u)
        dfs(u, s)
        seen2[u] = 0
        temp.pop()
    return 


for i in range(H):
    if seen[i]:
        continue
    temp = [i]
    seen[i] = 1
    seen2[i] = 1
    dfs(i, -1)
    seen2[i] = 0

print(-1)
0