結果

問題 No.2946 Puyo
ユーザー rlangevinrlangevin
提出日時 2024-10-25 21:26:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 1,408 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 143,872 KB
最終ジャッジ日時 2024-10-25 21:26:25
合計ジャッジ時間 12,852 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,952 KB
testcase_01 AC 40 ms
53,012 KB
testcase_02 AC 39 ms
53,620 KB
testcase_03 AC 312 ms
143,872 KB
testcase_04 AC 312 ms
143,784 KB
testcase_05 AC 330 ms
143,792 KB
testcase_06 AC 317 ms
143,704 KB
testcase_07 AC 324 ms
143,672 KB
testcase_08 AC 99 ms
82,464 KB
testcase_09 AC 179 ms
98,956 KB
testcase_10 AC 108 ms
81,084 KB
testcase_11 AC 226 ms
111,076 KB
testcase_12 AC 102 ms
82,188 KB
testcase_13 AC 41 ms
54,448 KB
testcase_14 AC 157 ms
84,900 KB
testcase_15 AC 124 ms
80,772 KB
testcase_16 AC 165 ms
88,960 KB
testcase_17 AC 269 ms
114,904 KB
testcase_18 AC 100 ms
77,140 KB
testcase_19 AC 208 ms
92,800 KB
testcase_20 AC 227 ms
97,576 KB
testcase_21 AC 285 ms
110,520 KB
testcase_22 AC 136 ms
81,556 KB
testcase_23 AC 227 ms
95,832 KB
testcase_24 AC 328 ms
120,752 KB
testcase_25 AC 349 ms
114,588 KB
testcase_26 AC 325 ms
118,816 KB
testcase_27 AC 115 ms
77,772 KB
testcase_28 AC 226 ms
109,760 KB
testcase_29 AC 282 ms
124,232 KB
testcase_30 AC 204 ms
103,164 KB
testcase_31 AC 249 ms
115,680 KB
testcase_32 AC 254 ms
115,912 KB
testcase_33 AC 238 ms
111,004 KB
testcase_34 AC 304 ms
125,580 KB
testcase_35 AC 265 ms
117,864 KB
testcase_36 AC 276 ms
118,620 KB
testcase_37 AC 289 ms
122,476 KB
testcase_38 AC 256 ms
109,812 KB
testcase_39 AC 236 ms
108,608 KB
testcase_40 AC 191 ms
97,364 KB
testcase_41 AC 277 ms
120,736 KB
testcase_42 AC 257 ms
116,332 KB
testcase_43 AC 220 ms
108,156 KB
testcase_44 AC 240 ms
115,448 KB
testcase_45 AC 220 ms
109,004 KB
testcase_46 AC 184 ms
97,308 KB
testcase_47 AC 225 ms
108,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind():
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]

    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]

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

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]

H, W = map(int, input().split())
N = H * W
U = UnionFind(N)
S = []
for i in range(H):
    S.append(list(input()))

def f(x, y):
    return x * W + y

for i in range(H):
    for j in range(W - 1):
        if S[i][j] == S[i][j + 1]:
            U.union(f(i,j), f(i,j+1))

for i in range(H - 1):
    for j in range(W):
        if S[i][j] == S[i + 1][j]:
            U.union(f(i,j), f(i+1,j))

ans = []
for i in range(H):
    temp = []
    for j in range(W):
        if U.get_size(f(i,j)) >= 4:
            temp.append(".")
        else:
            temp.append(S[i][j])
    print(*temp, sep="")   
0