結果

問題 No.2946 Puyo
ユーザー mkawa2mkawa2
提出日時 2024-10-25 21:32:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 713 ms / 2,000 ms
コード長 2,193 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 286,744 KB
最終ジャッジ日時 2024-10-25 21:32:32
合計ジャッジ時間 21,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,484 KB
testcase_01 AC 38 ms
53,564 KB
testcase_02 AC 36 ms
54,076 KB
testcase_03 AC 708 ms
285,904 KB
testcase_04 AC 713 ms
286,132 KB
testcase_05 AC 658 ms
286,152 KB
testcase_06 AC 635 ms
285,732 KB
testcase_07 AC 625 ms
286,744 KB
testcase_08 AC 117 ms
96,648 KB
testcase_09 AC 259 ms
164,180 KB
testcase_10 AC 123 ms
92,860 KB
testcase_11 AC 328 ms
208,052 KB
testcase_12 AC 109 ms
94,932 KB
testcase_13 AC 36 ms
55,224 KB
testcase_14 AC 183 ms
102,632 KB
testcase_15 AC 153 ms
88,816 KB
testcase_16 AC 221 ms
113,216 KB
testcase_17 AC 420 ms
189,020 KB
testcase_18 AC 110 ms
78,208 KB
testcase_19 AC 291 ms
118,200 KB
testcase_20 AC 332 ms
132,520 KB
testcase_21 AC 443 ms
172,820 KB
testcase_22 AC 168 ms
90,572 KB
testcase_23 AC 316 ms
126,100 KB
testcase_24 AC 584 ms
200,600 KB
testcase_25 AC 520 ms
180,768 KB
testcase_26 AC 572 ms
192,872 KB
testcase_27 AC 125 ms
79,044 KB
testcase_28 AC 496 ms
155,404 KB
testcase_29 AC 649 ms
190,948 KB
testcase_30 AC 408 ms
138,004 KB
testcase_31 AC 561 ms
165,924 KB
testcase_32 AC 586 ms
166,648 KB
testcase_33 AC 467 ms
154,924 KB
testcase_34 AC 649 ms
192,464 KB
testcase_35 AC 590 ms
174,696 KB
testcase_36 AC 561 ms
180,992 KB
testcase_37 AC 586 ms
196,112 KB
testcase_38 AC 437 ms
162,932 KB
testcase_39 AC 442 ms
160,716 KB
testcase_40 AC 292 ms
134,572 KB
testcase_41 AC 514 ms
198,276 KB
testcase_42 AC 460 ms
184,096 KB
testcase_43 AC 494 ms
156,688 KB
testcase_44 AC 538 ms
179,240 KB
testcase_45 AC 527 ms
159,412 KB
testcase_46 AC 341 ms
124,800 KB
testcase_47 AC 482 ms
148,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

class UnionFind:
    def __init__(self, n):
        self.table = [-1]*n
        self.mem = [[u] for u in range(n)]
        self.cnt = n

    def root(self, u):
        stack = []
        while self.table[u] >= 0:
            stack.append(u)
            u = self.table[u]
        for v in stack: self.table[v] = u
        return u

    def same(self, u, v):
        return self.root(u) == self.root(v)

    def merge(self, u, v):
        u = self.root(u)
        v = self.root(v)
        if u == v: return False
        su = -self.table[u]
        sv = -self.table[v]
        if su < sv: u, v = v, u
        self.table[u] = -su-sv
        self.table[v] = u
        self.mem[u] += self.mem[v]
        self.mem[v].clear()
        self.cnt -= 1
        return True

    def member(self,u):
        return self.mem[self.root(u)]

    # グループの要素数
    def size(self, u):
        return -self.table[self.root(u)]

h,w=LI()
gg=[list(SI()) for _ in range(h)]

uf=UnionFind(h*w)
for i in range(h):
    for j in range(w):
        ij=i*w+j
        if i and gg[i][j]==gg[i-1][j]:uf.merge(ij,ij-w)
        if j and gg[i][j]==gg[i][j-1]:uf.merge(ij,ij-1)

fin=set()
for u in range(h*w):
    u=uf.root(u)
    if u in fin:continue
    fin.add(u)
    i,j=divmod(u,w)
    if gg[i][j]!="." and uf.size(u)>3:
        for v in uf.member(u):
            x,y=divmod(v,w)
            gg[x][y]="."

for i in range(h):print(*gg[i],sep="")
0