結果

問題 No.2946 Puyo
ユーザー 👑 rin204rin204
提出日時 2024-10-26 00:39:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 538 ms / 2,000 ms
コード長 1,351 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 128,560 KB
最終ジャッジ日時 2024-10-26 00:39:53
合計ジャッジ時間 16,019 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,804 KB
testcase_01 AC 38 ms
52,468 KB
testcase_02 AC 38 ms
52,328 KB
testcase_03 AC 295 ms
128,516 KB
testcase_04 AC 289 ms
128,556 KB
testcase_05 AC 287 ms
128,560 KB
testcase_06 AC 294 ms
128,384 KB
testcase_07 AC 298 ms
128,276 KB
testcase_08 AC 93 ms
80,720 KB
testcase_09 AC 170 ms
94,396 KB
testcase_10 AC 103 ms
80,328 KB
testcase_11 AC 193 ms
103,772 KB
testcase_12 AC 92 ms
79,220 KB
testcase_13 AC 43 ms
53,780 KB
testcase_14 AC 152 ms
83,156 KB
testcase_15 AC 117 ms
79,540 KB
testcase_16 AC 159 ms
86,304 KB
testcase_17 AC 269 ms
104,180 KB
testcase_18 AC 97 ms
76,728 KB
testcase_19 AC 195 ms
87,060 KB
testcase_20 AC 241 ms
89,952 KB
testcase_21 AC 287 ms
97,600 KB
testcase_22 AC 142 ms
80,068 KB
testcase_23 AC 230 ms
87,600 KB
testcase_24 AC 361 ms
99,152 KB
testcase_25 AC 335 ms
96,572 KB
testcase_26 AC 350 ms
98,904 KB
testcase_27 AC 117 ms
77,364 KB
testcase_28 AC 394 ms
87,568 KB
testcase_29 AC 538 ms
91,628 KB
testcase_30 AC 338 ms
85,972 KB
testcase_31 AC 442 ms
90,084 KB
testcase_32 AC 425 ms
89,908 KB
testcase_33 AC 368 ms
88,692 KB
testcase_34 AC 464 ms
93,688 KB
testcase_35 AC 385 ms
92,224 KB
testcase_36 AC 385 ms
93,624 KB
testcase_37 AC 384 ms
97,800 KB
testcase_38 AC 284 ms
94,692 KB
testcase_39 AC 273 ms
94,816 KB
testcase_40 AC 214 ms
90,936 KB
testcase_41 AC 314 ms
102,948 KB
testcase_42 AC 287 ms
102,388 KB
testcase_43 AC 361 ms
87,300 KB
testcase_44 AC 444 ms
89,316 KB
testcase_45 AC 378 ms
87,852 KB
testcase_46 AC 282 ms
84,132 KB
testcase_47 AC 379 ms
87,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    def find(self, x):
        if self.par[x] < 0:
            return x
        lst = []
        while self.par[x] >= 0:
            lst.append(x)
            x = self.par[x]
        for y in lst:
            self.par[y] = x
        return x

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False

        if self.par[x] > self.par[y]:
            x, y = y, x

        self.par[x] += self.par[y]
        self.par[y] = x
        self.group_ -= 1
        return True

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

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

    @property
    def group(self):
        return self.group_


h, w = map(int, input().split())
G = [input() for _ in range(h)]
UF = UnionFind(h * w)

for i in range(h):
    for j in range(w):
        if i > 0 and G[i][j] == G[i - 1][j]:
            UF.unite(i * w + j, (i - 1) * w + j)
        if j > 0 and G[i][j] == G[i][j - 1]:
            UF.unite(i * w + j, i * w + j - 1)

ans = [["."] * w for _ in range(h)]

for i in range(h):
    for j in range(w):
        if UF.size(i * w + j) < 4:
            ans[i][j] = G[i][j]

for row in ans:
    print(*row, sep="")
0