結果

問題 No.2946 Puyo
ユーザー ra5anchorra5anchor
提出日時 2024-10-25 22:11:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,968 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 172,040 KB
最終ジャッジ日時 2024-10-25 22:11:51
合計ジャッジ時間 11,744 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,800 KB
testcase_01 AC 43 ms
54,452 KB
testcase_02 AC 43 ms
54,928 KB
testcase_03 AC 345 ms
172,040 KB
testcase_04 AC 355 ms
171,840 KB
testcase_05 AC 339 ms
171,904 KB
testcase_06 AC 339 ms
171,796 KB
testcase_07 AC 368 ms
171,836 KB
testcase_08 WA -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 48 ms
63,448 KB
testcase_14 RE -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 RE -
testcase_21 RE -
testcase_22 WA -
testcase_23 WA -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 WA -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 RE -
testcase_37 WA -
testcase_38 RE -
testcase_39 WA -
testcase_40 WA -
testcase_41 RE -
testcase_42 WA -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 WA -
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
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 union(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())


H, W = map(int, input().split())
S = [list(input().rstrip()) for _ in range(H)]

uf = UnionFind(H*W)

dij = [(1,0),(0,1),(-1,0),(0,-1)]
for i in range(H):
    for j in range(W):
        for (di,dj) in dij:
            ni, nj = i+di, j+dj
            if ni < 0 or ni >= H or nj < 0 or nj >= W:
                continue
            if S[i][j] == S[ni][nj]:
                uf.union(i*H+j, (ni)*H+nj)
                # print(i,j,ni,nj)

T = [[0]*W for _ in range(H)]
for i in range(H):
    for j in range(W):
        # print(i,j,uf.size(i*H+j))
        if uf.size(i*H+j) >= 4:
            T[i][j] = '.'
        else:
            T[i][j] = S[i][j]

for i in range(H):
    print(''.join(T[i]))
0