結果

問題 No.1647 Travel in Mitaru city 2
ユーザー ygd.ygd.
提出日時 2021-08-14 14:59:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,221 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 86,100 KB
最終ジャッジ日時 2024-10-05 09:10:56
合計ジャッジ時間 38,918 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,696 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 74 ms
11,264 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 38 ms
11,648 KB
testcase_08 AC 765 ms
79,184 KB
testcase_09 AC 673 ms
72,916 KB
testcase_10 AC 738 ms
79,256 KB
testcase_11 AC 975 ms
73,244 KB
testcase_12 AC 964 ms
70,124 KB
testcase_13 AC 737 ms
76,364 KB
testcase_14 AC 770 ms
80,716 KB
testcase_15 AC 782 ms
79,976 KB
testcase_16 AC 715 ms
76,472 KB
testcase_17 AC 697 ms
73,364 KB
testcase_18 AC 795 ms
78,524 KB
testcase_19 AC 777 ms
78,660 KB
testcase_20 AC 1,015 ms
69,360 KB
testcase_21 AC 768 ms
74,140 KB
testcase_22 AC 795 ms
82,364 KB
testcase_23 AC 792 ms
82,888 KB
testcase_24 AC 693 ms
69,344 KB
testcase_25 AC 667 ms
71,104 KB
testcase_26 AC 798 ms
82,884 KB
testcase_27 AC 816 ms
83,396 KB
testcase_28 AC 826 ms
85,332 KB
testcase_29 AC 823 ms
86,100 KB
testcase_30 AC 673 ms
71,240 KB
testcase_31 AC 819 ms
85,204 KB
testcase_32 AC 801 ms
74,584 KB
testcase_33 AC 792 ms
69,208 KB
testcase_34 AC 813 ms
85,204 KB
testcase_35 AC 746 ms
77,908 KB
testcase_36 AC 936 ms
85,980 KB
testcase_37 AC 804 ms
85,340 KB
testcase_38 AC 708 ms
72,324 KB
testcase_39 AC 646 ms
63,480 KB
testcase_40 AC 693 ms
71,428 KB
testcase_41 AC 985 ms
66,256 KB
testcase_42 AC 1,373 ms
72,940 KB
testcase_43 AC 35 ms
11,008 KB
testcase_44 AC 85 ms
26,624 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