結果
| 問題 |
No.157 2つの空洞
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-08-25 17:04:06 |
| 言語 | Python2 (2.7.18) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 2,000 ms |
| コード長 | 1,099 bytes |
| コンパイル時間 | 210 ms |
| コンパイル使用メモリ | 7,040 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2024-11-08 02:22:50 |
| 合計ジャッジ時間 | 1,261 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 16 |
ソースコード
w, h= map(int, raw_input().split())
c = []
hole = []
d = [(-1,0),(1,0),(0,-1),(0,1)]
for i in xrange(h):
c.append(raw_input())
# for i in xrange(h):
# print c[i]
for i in xrange(h):
x = c[i].find('.')
if x != -1:
hole.append((x,i))
break
i = 0
while i < len(hole):
for dd in d:
x = dd[0] + hole[i][0]
y = dd[1] + hole[i][1]
if x < 0 or x >= w:
continue
if y < 0 or y >= h:
continue
if c[y][x] == '.':
if (x,y) not in hole:
hole.append((x,y))
i += 1
hole1 = hole[:]
e = 0
i = 0
l = len(hole)
while True:
# print hole
if i == l:
e += 1
l = len(hole)
for dd in d:
x = dd[0] + hole[i][0]
y = dd[1] + hole[i][1]
if x < 0 or x >= w:
continue
if y < 0 or y >= h:
continue
if c[y][x] == '#':
if (x,y) not in hole:
hole.append((x,y))
elif (x,y) not in hole1:
print e
exit()
i += 1
print e