結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,696 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 73 ms
11,136 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 34 ms
11,392 KB
testcase_08 AC 645 ms
80,972 KB
testcase_09 AC 560 ms
74,832 KB
testcase_10 AC 672 ms
81,036 KB
testcase_11 AC 941 ms
75,256 KB
testcase_12 AC 978 ms
72,308 KB
testcase_13 AC 609 ms
78,544 KB
testcase_14 AC 645 ms
82,764 KB
testcase_15 AC 649 ms
81,896 KB
testcase_16 AC 641 ms
78,132 KB
testcase_17 AC 641 ms
75,284 KB
testcase_18 AC 704 ms
80,436 KB
testcase_19 AC 824 ms
80,332 KB
testcase_20 AC 1,051 ms
71,108 KB
testcase_21 AC 734 ms
76,112 KB
testcase_22 AC 720 ms
84,288 KB
testcase_23 AC 716 ms
84,672 KB
testcase_24 AC 592 ms
71,188 KB
testcase_25 AC 581 ms
73,028 KB
testcase_26 AC 723 ms
84,800 KB
testcase_27 AC 727 ms
85,448 KB
testcase_28 AC 765 ms
87,120 KB
testcase_29 AC 717 ms
88,028 KB
testcase_30 AC 537 ms
73,432 KB
testcase_31 AC 706 ms
87,132 KB
testcase_32 AC 688 ms
76,628 KB
testcase_33 AC 687 ms
71,132 KB
testcase_34 AC 734 ms
87,124 KB
testcase_35 AC 619 ms
79,836 KB
testcase_36 AC 772 ms
87,896 KB
testcase_37 AC 776 ms
87,132 KB
testcase_38 AC 627 ms
74,120 KB
testcase_39 AC 569 ms
65,520 KB
testcase_40 AC 623 ms
73,220 KB
testcase_41 AC 1,042 ms
68,192 KB
testcase_42 AC 1,529 ms
75,192 KB
testcase_43 AC 36 ms
10,880 KB
testcase_44 AC 96 ms
26,368 KB
testcase_45 TLE -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000)
input = sys.stdin.buffer.readline

def main():
    H,W,N = map(int,input().split())
    dic = {}
    Start = set([])
    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)
        Start.add(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):
        stack = []
        visited = [0]*(H+W)
        dfs(i)
        #print("NEXT",stack)
    print(-1)
        
if __name__ == '__main__':
    main()
0