結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 42 ms
11,904 KB
testcase_08 AC 912 ms
97,684 KB
testcase_09 AC 823 ms
90,776 KB
testcase_10 AC 928 ms
97,988 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 910 ms
95,500 KB
testcase_14 AC 961 ms
100,872 KB
testcase_15 AC 944 ms
99,116 KB
testcase_16 AC 867 ms
94,588 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 991 ms
101,888 KB
testcase_23 AC 1,007 ms
102,540 KB
testcase_24 AC 895 ms
88,780 KB
testcase_25 AC 837 ms
89,604 KB
testcase_26 AC 976 ms
102,532 KB
testcase_27 AC 980 ms
103,044 KB
testcase_28 AC 987 ms
105,624 KB
testcase_29 AC 1,010 ms
105,756 KB
testcase_30 AC 824 ms
91,032 KB
testcase_31 AC 1,005 ms
105,632 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 999 ms
105,500 KB
testcase_35 AC 924 ms
97,304 KB
testcase_36 AC 1,006 ms
105,504 KB
testcase_37 AC 1,028 ms
105,624 KB
testcase_38 AC 862 ms
91,596 KB
testcase_39 AC 801 ms
82,876 KB
testcase_40 AC 844 ms
90,688 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 33 ms
10,752 KB
testcase_44 AC 114 ms
28,032 KB
testcase_45 WA -
testcase_46 AC 697 ms
73,304 KB
testcase_47 WA -
testcase_48 WA -
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
    if i == 0:
        s, g = x, y + H
    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] == 0:
                ans = []
                now = u
                while temp:
                    ans.append(D[(now, temp[-1])])
                    now = temp.pop()
                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
    dfs(i, -1)

print(-1)
0