結果

問題 No.157 2つの空洞
ユーザー FromBooskaFromBooska
提出日時 2023-03-01 22:02:07
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,116 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 86,660 KB
実行使用メモリ 78,236 KB
最終ジャッジ日時 2023-10-15 01:36:02
合計ジャッジ時間 2,958 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 70 ms
71,120 KB
testcase_02 AC 70 ms
70,768 KB
testcase_03 RE -
testcase_04 AC 75 ms
75,784 KB
testcase_05 AC 79 ms
75,884 KB
testcase_06 AC 74 ms
75,360 KB
testcase_07 AC 72 ms
70,948 KB
testcase_08 AC 72 ms
71,128 KB
testcase_09 AC 80 ms
76,100 KB
testcase_10 AC 69 ms
71,280 KB
testcase_11 AC 79 ms
75,844 KB
testcase_12 AC 75 ms
75,444 KB
testcase_13 AC 74 ms
75,500 KB
testcase_14 AC 83 ms
76,184 KB
testcase_15 AC 85 ms
76,308 KB
testcase_16 AC 80 ms
75,992 KB
testcase_17 AC 89 ms
76,472 KB
testcase_18 AC 80 ms
76,040 KB
testcase_19 AC 72 ms
71,084 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(H):
        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