結果
問題 | No.157 2つの空洞 |
ユーザー | FromBooska |
提出日時 | 2023-03-01 22:04:32 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 59 ms / 2,000 ms |
コード長 | 2,116 bytes |
コンパイル時間 | 427 ms |
コンパイル使用メモリ | 82,280 KB |
実行使用メモリ | 66,816 KB |
最終ジャッジ日時 | 2024-09-16 19:09:14 |
合計ジャッジ時間 | 2,190 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,224 KB |
testcase_01 | AC | 40 ms
52,096 KB |
testcase_02 | AC | 39 ms
52,608 KB |
testcase_03 | AC | 40 ms
52,480 KB |
testcase_04 | AC | 45 ms
59,520 KB |
testcase_05 | AC | 50 ms
60,288 KB |
testcase_06 | AC | 43 ms
58,368 KB |
testcase_07 | AC | 40 ms
52,224 KB |
testcase_08 | AC | 40 ms
52,224 KB |
testcase_09 | AC | 49 ms
62,208 KB |
testcase_10 | AC | 39 ms
52,352 KB |
testcase_11 | AC | 48 ms
60,544 KB |
testcase_12 | AC | 44 ms
58,112 KB |
testcase_13 | AC | 44 ms
58,496 KB |
testcase_14 | AC | 56 ms
65,024 KB |
testcase_15 | AC | 59 ms
64,896 KB |
testcase_16 | AC | 51 ms
62,176 KB |
testcase_17 | AC | 59 ms
66,816 KB |
testcase_18 | AC | 48 ms
61,696 KB |
testcase_19 | AC | 42 ms
52,480 KB |
ソースコード
# まず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)