結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
58,384 KB
testcase_01 AC 34 ms
53,408 KB
testcase_02 AC 34 ms
52,824 KB
testcase_03 AC 36 ms
54,664 KB
testcase_04 AC 75 ms
77,140 KB
testcase_05 AC 35 ms
53,768 KB
testcase_06 AC 36 ms
55,644 KB
testcase_07 AC 57 ms
72,472 KB
testcase_08 AC 425 ms
196,016 KB
testcase_09 AC 379 ms
176,824 KB
testcase_10 AC 428 ms
196,604 KB
testcase_11 AC 1,495 ms
337,812 KB
testcase_12 AC 2,252 ms
430,120 KB
testcase_13 AC 699 ms
190,932 KB
testcase_14 AC 532 ms
203,192 KB
testcase_15 AC 457 ms
198,804 KB
testcase_16 AC 414 ms
187,188 KB
testcase_17 AC 441 ms
180,864 KB
testcase_18 AC 477 ms
190,496 KB
testcase_19 AC 498 ms
196,844 KB
testcase_20 AC 2,055 ms
394,472 KB
testcase_21 AC 570 ms
190,492 KB
testcase_22 AC 583 ms
208,168 KB
testcase_23 AC 453 ms
203,896 KB
testcase_24 AC 571 ms
199,244 KB
testcase_25 AC 511 ms
174,604 KB
testcase_26 AC 495 ms
205,036 KB
testcase_27 AC 517 ms
204,828 KB
testcase_28 AC 481 ms
210,048 KB
testcase_29 AC 501 ms
210,232 KB
testcase_30 AC 507 ms
179,556 KB
testcase_31 AC 499 ms
210,872 KB
testcase_32 AC 552 ms
196,984 KB
testcase_33 AC 600 ms
180,872 KB
testcase_34 AC 501 ms
210,636 KB
testcase_35 AC 426 ms
187,332 KB
testcase_36 AC 477 ms
210,656 KB
testcase_37 AC 492 ms
210,444 KB
testcase_38 AC 601 ms
211,624 KB
testcase_39 AC 428 ms
144,236 KB
testcase_40 AC 418 ms
165,600 KB
testcase_41 AC 1,849 ms
308,688 KB
testcase_42 AC 2,049 ms
332,276 KB
testcase_43 AC 63 ms
75,476 KB
testcase_44 AC 45 ms
64,984 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