結果

問題 No.13 囲みたい!
ユーザー pluto77pluto77
提出日時 2017-08-02 13:37:43
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 695 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-19 13:26:57
合計ジャッジ時間 940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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)
print a
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