結果

問題 No.157 2つの空洞
ユーザー FromBooskaFromBooska
提出日時 2023-03-01 22:04:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 2,116 bytes
コンパイル時間 881 ms
コンパイル使用メモリ 86,824 KB
実行使用メモリ 76,656 KB
最終ジャッジ日時 2023-10-15 01:38:08
合計ジャッジ時間 3,684 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,332 KB
testcase_01 AC 78 ms
71,256 KB
testcase_02 AC 78 ms
71,408 KB
testcase_03 AC 78 ms
71,320 KB
testcase_04 AC 85 ms
75,992 KB
testcase_05 AC 89 ms
76,216 KB
testcase_06 AC 81 ms
75,492 KB
testcase_07 AC 77 ms
71,448 KB
testcase_08 AC 78 ms
71,312 KB
testcase_09 AC 87 ms
76,656 KB
testcase_10 AC 79 ms
71,180 KB
testcase_11 AC 87 ms
76,224 KB
testcase_12 AC 83 ms
75,596 KB
testcase_13 AC 83 ms
75,492 KB
testcase_14 AC 94 ms
76,288 KB
testcase_15 AC 92 ms
76,492 KB
testcase_16 AC 89 ms
76,288 KB
testcase_17 AC 98 ms
76,468 KB
testcase_18 AC 90 ms
76,448 KB
testcase_19 AC 81 ms
71,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# まずUnion Findで空洞1と2を分ける
# 後空洞1と空洞2の全点対の距離の最小値が答え
# 20*20なのでかまわず全探索

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.parents[x] > self.parents[y]:
            x, y = y, x
        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def size(self, x):
        return -self.parents[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return len(self.roots())

    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())

W, H = map(int, input().split())
grid = []
for i in range(H):
    grid.append(input())

UF = UnionFind(H*W)
for h in range(H):
    for w in range(W):
        if w+1 < W and grid[h][w] == '.' and grid[h][w] == grid[h][w+1]:
            UF.unite(h*W+w, h*W+(w+1))
        if h+1 < H and grid[h][w] == '.' and grid[h][w] == grid[h+1][w]:
            UF.unite(h*W+w, (h+1)*W+w)

ans = 10**4
for h in range(H):
    for w in range(W):
        if grid[h][w] == '.':
            for h2 in range(H):
                for w2 in range(W):
                    if grid[h2][w2] == '.':
                        if UF.find(h*W+w) != UF.find(h2*W+w2):
                            ans = min(ans, abs(h2-h)+abs(w2-w)-1)
print(ans)



0