結果

問題 No.157 2つの空洞
ユーザー nbisconbisco
提出日時 2017-02-03 23:44:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,924 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-06 14:02:52
合計ジャッジ時間 1,357 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 24 ms
10,880 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 24 ms
10,880 KB
testcase_11 AC 25 ms
11,008 KB
testcase_12 AC 25 ms
10,880 KB
testcase_13 AC 27 ms
10,880 KB
testcase_14 AC 27 ms
10,880 KB
testcase_15 AC 32 ms
10,880 KB
testcase_16 AC 27 ms
10,880 KB
testcase_17 AC 26 ms
10,880 KB
testcase_18 AC 25 ms
10,880 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def dist(start, goal):
    return abs(start[0]-goal[0]) + abs(start[1]-goal[1]) - 1


def gather_blanks(start_blank):
    blanks = set([(start_blank[0], start_blank[1])])
    queue = [(start_blank[0], start_blank[1])]
    while queue:
        cur = queue.pop(0)
        if cur[0] < (H-2) and wall[cur[0]+1][cur[1]] == ".":
            if not ((cur[0]+1, cur[1]) in blanks):
                queue.append((cur[0]+1, cur[1]))
                blanks.add((cur[0]+1, cur[1]))
        if cur[1] < (W-2) and wall[cur[0]][cur[1]+1] == ".":
            if not ((cur[0], cur[1]+1) in blanks):
                queue.append((cur[0], cur[1]+1))
                blanks.add((cur[0], cur[1]+1))
        if cur[0] > 1 and wall[cur[0]-1][cur[1]] == ".":
            if not ((cur[0]-1, cur[1]) in blanks):
                queue.append((cur[0]-1, cur[1]))
                blanks.add((cur[0]-1, cur[1]))
        if cur[1] > 1 and wall[cur[0]][cur[1]-1] == ".":
            if not ((cur[0], cur[1]-1) in blanks):
                queue.append((cur[0], cur[1]-1))
                blanks.add((cur[0], cur[1]-1))
    return blanks


W, H = map(int, input().split(" "))

wall = []
for i in range(H):
    wall.append(list(input()))

start_blank = [-1,-1]
for i in range(H):
    if wall[i].count(".") > 0:
        start_blank[0] = i
        start_blank[1] = wall[i].index(".")
        break
blanks_1 = gather_blanks(start_blank)

start_blank = [-1,-1]
ok = False
for i in range(H):
    for j in range(W):
        if (i, j) in blanks_1:
            continue
        if wall[i][j] == ".":
            start_blank[0] = i
            start_blank[1] = j
            ok = True
            break
    if ok:
        break

blanks_2 = gather_blanks(start_blank)
blanks_1 = list(blanks_1)
blanks_2 = list(blanks_2)

ans = max(H, W)
for b in range(len(blanks_1)):
    for s in range(len(blanks_2)):
        ans = min(ans, dist(blanks_1[b], blanks_2[s]))
print(ans)
0