結果
問題 | No.13 囲みたい! |
ユーザー | pluto77 |
提出日時 | 2017-08-02 13:02:37 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 644 bytes |
コンパイル時間 | 160 ms |
コンパイル使用メモリ | 6,948 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-10-11 05:49:13 |
合計ジャッジ時間 | 1,008 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 11 ms
6,820 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 31 ms
6,816 KB |
testcase_08 | AC | 32 ms
6,816 KB |
testcase_09 | RE | - |
testcase_10 | AC | 14 ms
6,820 KB |
testcase_11 | AC | 27 ms
6,820 KB |
testcase_12 | AC | 13 ms
6,820 KB |
testcase_13 | AC | 17 ms
6,820 KB |
testcase_14 | AC | 18 ms
6,816 KB |
testcase_15 | AC | 11 ms
6,816 KB |
ソースコード
#yuki_13 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]: sucue 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'