結果
問題 | No.157 2つの空洞 |
ユーザー | FromBooska |
提出日時 | 2023-03-01 22:02:07 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,116 bytes |
コンパイル時間 | 160 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 66,432 KB |
最終ジャッジ日時 | 2024-09-16 19:07:19 |
合計ジャッジ時間 | 2,100 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 45 ms
52,352 KB |
testcase_02 | AC | 43 ms
52,608 KB |
testcase_03 | RE | - |
testcase_04 | AC | 47 ms
59,008 KB |
testcase_05 | AC | 52 ms
60,416 KB |
testcase_06 | AC | 47 ms
58,240 KB |
testcase_07 | AC | 42 ms
52,352 KB |
testcase_08 | AC | 43 ms
52,480 KB |
testcase_09 | AC | 56 ms
61,824 KB |
testcase_10 | AC | 43 ms
52,608 KB |
testcase_11 | AC | 51 ms
60,416 KB |
testcase_12 | AC | 47 ms
58,368 KB |
testcase_13 | AC | 47 ms
57,984 KB |
testcase_14 | AC | 60 ms
63,872 KB |
testcase_15 | AC | 61 ms
64,128 KB |
testcase_16 | AC | 56 ms
62,080 KB |
testcase_17 | AC | 67 ms
66,432 KB |
testcase_18 | AC | 53 ms
61,568 KB |
testcase_19 | AC | 43 ms
52,736 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(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)