結果
問題 | No.157 2つの空洞 |
ユーザー | yuyyuyu |
提出日時 | 2015-08-04 08:18:09 |
言語 | PyPy2 (7.3.15) |
結果 |
AC
|
実行時間 | 92 ms / 2,000 ms |
コード長 | 626 bytes |
コンパイル時間 | 580 ms |
コンパイル使用メモリ | 75,964 KB |
実行使用メモリ | 78,504 KB |
最終ジャッジ日時 | 2024-07-18 01:12:06 |
合計ジャッジ時間 | 2,832 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 75 ms
75,160 KB |
testcase_01 | AC | 70 ms
75,528 KB |
testcase_02 | AC | 79 ms
76,052 KB |
testcase_03 | AC | 73 ms
76,064 KB |
testcase_04 | AC | 78 ms
76,452 KB |
testcase_05 | AC | 75 ms
76,696 KB |
testcase_06 | AC | 79 ms
77,740 KB |
testcase_07 | AC | 75 ms
76,448 KB |
testcase_08 | AC | 72 ms
76,608 KB |
testcase_09 | AC | 72 ms
76,840 KB |
testcase_10 | AC | 74 ms
76,588 KB |
testcase_11 | AC | 76 ms
77,852 KB |
testcase_12 | AC | 77 ms
77,756 KB |
testcase_13 | AC | 79 ms
77,996 KB |
testcase_14 | AC | 80 ms
77,852 KB |
testcase_15 | AC | 83 ms
77,976 KB |
testcase_16 | AC | 83 ms
77,612 KB |
testcase_17 | AC | 92 ms
78,504 KB |
testcase_18 | AC | 82 ms
77,844 KB |
testcase_19 | AC | 79 ms
77,944 KB |
ソースコード
dxy=zip([1,0,-1,0],[0,1,0,-1]) def rec(x,y,cnt): C[y][x]=str(cnt) for dx,dy in dxy: nx,ny=x+dx,y+dy if 0<=nx<W and 0<=ny<H and C[ny][nx]=='.': rec(nx,ny,cnt) W,H=map(int,raw_input().split()) C=[list(raw_input()) for i in xrange(H)] cnt=0 for y in xrange(H): for x in xrange(W): if C[y][x]=='.': rec(x,y,cnt) cnt+=1 ans=100000 for y1 in xrange(H): for x1 in xrange(W): for y2 in xrange(H): for x2 in xrange(W): if C[y1][x1]=='0' and C[y2][x2]=='1': ans=min(ans,abs(x1-x2)+abs(y1-y2)) print ans-1