結果

問題 No.13 囲みたい!
ユーザー takakintakakin
提出日時 2020-05-24 15:58:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,841 ms / 5,000 ms
コード長 917 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,948 KB
最終ジャッジ日時 2024-10-11 19:59:23
合計ジャッジ時間 3,742 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 65 ms
68,352 KB
testcase_04 AC 61 ms
68,608 KB
testcase_05 AC 1,841 ms
102,948 KB
testcase_06 AC 59 ms
68,992 KB
testcase_07 AC 297 ms
80,512 KB
testcase_08 AC 50 ms
63,744 KB
testcase_09 AC 50 ms
63,616 KB
testcase_10 AC 48 ms
62,080 KB
testcase_11 AC 50 ms
62,848 KB
testcase_12 AC 45 ms
60,032 KB
testcase_13 AC 49 ms
62,336 KB
testcase_14 AC 48 ms
62,208 KB
testcase_15 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
w,h=map(int,input().split())
n=w*h
edge=[[] for _ in range(n)]
M=[[int(i) for i in input().split()] for _ in range(h)]
d=((1,0),(0,1),(-1,0),(0,-1))
E=[0]*1001
for i in range(n):
  ix,iy=i//w,i%w
  for dx,dy in d:
    if 0<=ix+dx<h and 0<=iy+dy<w:
      if M[ix][iy]==M[ix+dx][iy+dy]:
        edge[i].append((ix+dx)*w+(iy+dy))
        E[M[ix][iy]]+=1
ans=False
for i in range(n):
  ix,iy=i//w,i%w
  if E[M[ix][iy]]<8 or len(edge[i])<2:
    continue
  else:
    Chk=[False]*n
    Prev=[None]*n
    Chk[i]=True
    S=[]
    S.append(i)
    while S:
      s=S.pop()
      for g in edge[s]:
        if Chk[g] and g!=Prev[s]:
          ans=True
          break
        elif not Chk[g]:
          Prev[g]=s
          S.append(g)
          Chk[g]=True
        else:
          continue
  if ans==True:
    break
if ans:
  print("possible")
else:
  print("impossible")
  
0