結果

問題 No.1647 Travel in Mitaru city 2
ユーザー ansainansain
提出日時 2021-08-13 22:51:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,706 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 112,612 KB
最終ジャッジ日時 2024-04-14 19:35:01
合計ジャッジ時間 17,729 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,120 KB
testcase_01 AC 41 ms
55,168 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 46 ms
60,652 KB
testcase_44 AC 47 ms
65,692 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict, Counter, deque
from itertools import permutations, combinations, product, combinations_with_replacement, groupby, accumulate
import operator
from math import sqrt, gcd, factorial
#from math import isqrt, prod, comb  #python3.8用(notpypy)
#from bisect import bisect_left, bisect_right
#from functools import lru_cache, reduce
#from heapq import heappush, heappop, heapify, heappushpop, heapreplace
#import numpy as np
#import networkx as nx
#from networkx.utils import UnionFind
#from numba import njit, b1, i1, i4, i8, f8
#numba例 @njit(i1(i4[:], i8[:, :]),cache=True) 引数i4配列、i8 2次元配列,戻り値i1
#from scipy.sparse import csr_matrix
#from scipy.sparse.csgraph import shortest_path, floyd_warshall, dijkstra, bellman_ford, johnson, NegativeCycleError, maximum_bipartite_matching, maximum_flow, minimum_spanning_tree
def input(): return sys.stdin.readline().rstrip()
def divceil(n, k): return 1+(n-1)//k  # n/kの切り上げを返す
def yn(hantei, yes='Yes', no='No'): print(yes if hantei else no)


def main():
    mod = 10**9+7
    mod2 = 998244353
    h,w,n=map(int, input().split())
    xy=[list(map(lambda x: int(x)-1, input().split())) for i in range(n)]
    graph=[[] for i in range(h+w)]
    for i,(x,y) in enumerate(xy):
        graph[x].append([y+h,i+1])
        graph[y+h].append([x,i+1])
    def dfs(points,edges):
        if len(edges)==4:
            print(4)
            print(*edges)
            exit()
        for v,num in graph[points[-1]]:
            if num not in edges:
                dfs(points+[v],edges+[num])
    for i in range(h):
        dfs([i],[])
    print(-1)
    


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