結果

問題 No.1647 Travel in Mitaru city 2
ユーザー ygd.ygd.
提出日時 2021-08-14 15:01:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,221 bytes
コンパイル時間 1,058 ms
コンパイル使用メモリ 81,684 KB
実行使用メモリ 431,356 KB
最終ジャッジ日時 2024-10-05 09:13:25
合計ジャッジ時間 32,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
60,608 KB
testcase_01 AC 32 ms
52,616 KB
testcase_02 AC 33 ms
53,372 KB
testcase_03 AC 35 ms
54,684 KB
testcase_04 AC 74 ms
76,668 KB
testcase_05 AC 34 ms
53,900 KB
testcase_06 AC 38 ms
54,308 KB
testcase_07 AC 57 ms
72,876 KB
testcase_08 AC 438 ms
196,540 KB
testcase_09 AC 390 ms
176,556 KB
testcase_10 AC 444 ms
198,256 KB
testcase_11 AC 1,536 ms
337,588 KB
testcase_12 AC 2,229 ms
431,356 KB
testcase_13 AC 452 ms
189,436 KB
testcase_14 AC 522 ms
201,760 KB
testcase_15 AC 448 ms
198,660 KB
testcase_16 AC 415 ms
187,308 KB
testcase_17 AC 446 ms
179,904 KB
testcase_18 AC 482 ms
190,804 KB
testcase_19 AC 508 ms
196,908 KB
testcase_20 AC 2,078 ms
395,020 KB
testcase_21 AC 542 ms
191,492 KB
testcase_22 AC 536 ms
209,408 KB
testcase_23 AC 463 ms
204,004 KB
testcase_24 AC 560 ms
199,280 KB
testcase_25 AC 478 ms
176,336 KB
testcase_26 AC 469 ms
205,856 KB
testcase_27 AC 463 ms
204,744 KB
testcase_28 AC 490 ms
210,552 KB
testcase_29 AC 474 ms
210,792 KB
testcase_30 AC 493 ms
179,980 KB
testcase_31 AC 478 ms
211,468 KB
testcase_32 AC 538 ms
197,212 KB
testcase_33 AC 588 ms
180,780 KB
testcase_34 AC 473 ms
211,508 KB
testcase_35 AC 422 ms
187,416 KB
testcase_36 AC 481 ms
211,052 KB
testcase_37 AC 475 ms
210,876 KB
testcase_38 AC 599 ms
210,452 KB
testcase_39 AC 409 ms
144,312 KB
testcase_40 AC 405 ms
166,820 KB
testcase_41 AC 1,838 ms
307,916 KB
testcase_42 AC 2,035 ms
331,440 KB
testcase_43 AC 53 ms
75,340 KB
testcase_44 AC 41 ms
65,632 KB
testcase_45 TLE -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000)

def main():
    H,W,N = map(int,input().split())
    dic = {}
    G = [[] for _ in range(H+W)]
    for i in range(N):
        x,y = map(int,input().split())
        x -= 1; y -= 1
        dic[(x,y+H)] = i+1 #1-index
        h = x
        w = y + H
        G[h].append(w)
        G[w].append(h)
    #print(G)
    #print(dic)
    def ans_print(X):
        #print("X",X)
        ret = []
        for i in range(len(X)):
            if i == len(X) - 1: #最後
                a = X[i]; b = X[0]
            else:
                a = X[i]; b = X[i+1]
            if a > b:
                a,b = b,a
            ret.append(dic[(a,b)])
        print(len(ret))
        print(*ret)
        exit()

    def dfs(v):
        stack.append(v)
        visited[v] = 1
        for u in G[v]:
            if u == stack[0] and len(stack) > 2:
                ans_print(stack)
            if visited[u] == 1: continue
            #stack.append(u)
            dfs(u)
            stack.pop()
            visited[u] = 0

    for i in range(H+W):
        stack = []
        visited = [0]*(H+W)
        dfs(i)
        #print("NEXT",stack)
    print(-1)
        



if __name__ == '__main__':
    main()
0