結果

問題 No.13 囲みたい!
コンテスト
ユーザー pluto77
提出日時 2017-08-02 13:39:39
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 687 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 164 ms
コンパイル使用メモリ 77,960 KB
最終ジャッジ日時 2025-12-04 00:26:18
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#yuki_13
import sys

sys.setrecursionlimit(10000)

def dfs(y,x,py,px,n):
 global suc
 if suc: return
 done[y][x]=True
 for i in xrange(4):
  ny=y+dy[i]
  nx=x+dx[i]
  if not (0<=ny and ny<H and 0<=nx and nx<W): continue
  if ny==py and nx==px: continue
  if a[ny][nx]!=n: continue
  if done[ny][nx]:
   suc=True
   return
  dfs(ny,nx,y,x,n)

W,H=map(int,raw_input().split())
a=[]
for i in xrange(H):
 temp=map(int,raw_input().split())
 a.append(temp)
done=[[0 for i in xrange(W)] for j in xrange(H)]
dx=[-1,0,1,0]
dy=[0,1,0,-1]
suc=False

for i in xrange(H):
 for j in xrange(W):
  if suc: break
  if done[i][j]: continue
  dfs(i,j,i,j,a[i][j])
print 'possible' if suc else 'impossible'
0