結果

問題 No.2946 Puyo
ユーザー prin_kemkemprin_kemkem
提出日時 2024-10-26 17:26:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 586 ms / 2,000 ms
コード長 3,012 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 292,140 KB
最終ジャッジ日時 2024-10-26 17:26:47
合計ジャッジ時間 16,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
80,396 KB
testcase_01 AC 89 ms
80,524 KB
testcase_02 AC 87 ms
80,452 KB
testcase_03 AC 565 ms
291,960 KB
testcase_04 AC 560 ms
292,140 KB
testcase_05 AC 526 ms
291,908 KB
testcase_06 AC 586 ms
291,908 KB
testcase_07 AC 571 ms
291,924 KB
testcase_08 AC 143 ms
95,228 KB
testcase_09 AC 225 ms
139,316 KB
testcase_10 AC 127 ms
90,052 KB
testcase_11 AC 284 ms
173,556 KB
testcase_12 AC 124 ms
90,940 KB
testcase_13 AC 92 ms
80,684 KB
testcase_14 AC 174 ms
100,068 KB
testcase_15 AC 163 ms
89,632 KB
testcase_16 AC 203 ms
123,760 KB
testcase_17 AC 338 ms
185,704 KB
testcase_18 AC 125 ms
82,116 KB
testcase_19 AC 212 ms
109,608 KB
testcase_20 AC 254 ms
119,544 KB
testcase_21 AC 329 ms
161,552 KB
testcase_22 AC 160 ms
89,028 KB
testcase_23 AC 230 ms
109,804 KB
testcase_24 AC 379 ms
159,616 KB
testcase_25 AC 336 ms
159,280 KB
testcase_26 AC 349 ms
164,596 KB
testcase_27 AC 139 ms
82,872 KB
testcase_28 AC 220 ms
110,552 KB
testcase_29 AC 268 ms
121,488 KB
testcase_30 AC 206 ms
105,720 KB
testcase_31 AC 237 ms
113,288 KB
testcase_32 AC 246 ms
113,556 KB
testcase_33 AC 255 ms
115,512 KB
testcase_34 AC 294 ms
136,232 KB
testcase_35 AC 269 ms
124,728 KB
testcase_36 AC 277 ms
129,580 KB
testcase_37 AC 347 ms
158,240 KB
testcase_38 AC 280 ms
144,604 KB
testcase_39 AC 272 ms
151,156 KB
testcase_40 AC 217 ms
122,280 KB
testcase_41 AC 355 ms
184,264 KB
testcase_42 AC 317 ms
176,596 KB
testcase_43 AC 214 ms
114,176 KB
testcase_44 AC 229 ms
120,396 KB
testcase_45 AC 222 ms
111,512 KB
testcase_46 AC 186 ms
97,412 KB
testcase_47 AC 217 ms
108,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
# from functools import cache
# import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
# from more_itertools import distinct_permutations
from heapq import heapify, heappop, heappush, heappushpop
import math
import bisect
from pprint import pprint
from random import randint, shuffle, randrange
# from sortedcontainers import SortedSet, SortedList, SortedDict
import sys
# sys.setrecursionlimit(2000000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################   

class UnionFind:
    #コンストラクタ
    def __init__(self, n):
        self.n = n
        self.parents = [-1]*n

    #点xの根を調べる+親が根になるよう移動
    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    #点x,yの属する集合同士を連結(要素数が少ない方を多い方に連結)
    #辺を追加したらTrue, しなければFalseを返す
    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if self.parents[x] > self.parents[y]:
            x, y = y, x
        self.parents[x] += self.parents[y]
        self.parents[y] = x
        return True

    #点xが属する集合の要素数を取得
    def size(self, x):
        return -self.parents[self.find(x)]

    #点x,yが同じ集合に属しているか判定
    def same(self, x, y):
        return self.find(x) == self.find(y)

    #点xの属する集合の全要素を取得
    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 get_groups(self):
        groups = defaultdict(list)
        for x in range(self.n):
            groups[self.find(x)].append(x)
        return groups

    #print(インスタンス)で、全集合の「根と全要素」を出力
    def __str__(self):
        return '\n'.join('{}:{}'.format(r, self.menbers(r)) for r in self.roots())

H, W = map(int, input().split())
G = [list(input()) for _ in range(H)]
uf = UnionFind(H*W)
for i in range(H):
    for j in range(W-1):
        if G[i][j] == G[i][j+1]:
            uf.union(i*W+j, i*W+(j+1))
for i in range(H-1):
    for j in range(W):
        if G[i][j] == G[i+1][j]:
            uf.union(i*W+j, (i+1)*W+j)
for r, C in uf.get_groups().items():
    if len(C) >= 4:
        for c in C:
            i, j = divmod(c, W)
            G[i][j] = "."
for row in G:   
    print("".join(row))
0