結果

問題 No.2946 Puyo
ユーザー ニックネームニックネーム
提出日時 2024-10-25 21:39:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,912 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 28,900 KB
最終ジャッジ日時 2024-10-25 21:40:36
合計ジャッジ時間 39,156 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 1,018 ms
28,740 KB
testcase_04 AC 1,005 ms
28,788 KB
testcase_05 AC 967 ms
28,888 KB
testcase_06 AC 1,008 ms
28,900 KB
testcase_07 AC 988 ms
28,744 KB
testcase_08 AC 91 ms
12,032 KB
testcase_09 AC 319 ms
16,512 KB
testcase_10 AC 86 ms
11,904 KB
testcase_11 AC 491 ms
20,080 KB
testcase_12 AC 84 ms
11,904 KB
testcase_13 AC 31 ms
11,008 KB
testcase_14 AC 137 ms
12,928 KB
testcase_15 AC 79 ms
11,776 KB
testcase_16 AC 206 ms
14,080 KB
testcase_17 AC 688 ms
22,164 KB
testcase_18 AC 41 ms
11,136 KB
testcase_19 AC 327 ms
16,512 KB
testcase_20 AC 469 ms
18,304 KB
testcase_21 AC 735 ms
23,544 KB
testcase_22 AC 115 ms
12,416 KB
testcase_23 AC 479 ms
17,920 KB
testcase_24 AC 1,101 ms
27,632 KB
testcase_25 AC 918 ms
25,452 KB
testcase_26 AC 1,038 ms
27,244 KB
testcase_27 AC 45 ms
11,008 KB
testcase_28 AC 1,279 ms
19,768 KB
testcase_29 AC 1,912 ms
23,952 KB
testcase_30 AC 1,029 ms
18,176 KB
testcase_31 AC 1,519 ms
22,688 KB
testcase_32 AC 1,441 ms
23,328 KB
testcase_33 AC 1,199 ms
22,076 KB
testcase_34 AC 1,677 ms
27,108 KB
testcase_35 AC 1,319 ms
24,580 KB
testcase_36 AC 1,375 ms
25,112 KB
testcase_37 AC 1,298 ms
26,788 KB
testcase_38 AC 859 ms
22,512 KB
testcase_39 AC 745 ms
21,760 KB
testcase_40 AC 440 ms
17,664 KB
testcase_41 AC 988 ms
26,232 KB
testcase_42 AC 862 ms
24,116 KB
testcase_43 AC 1,259 ms
18,816 KB
testcase_44 AC 1,555 ms
20,992 KB
testcase_45 AC 1,292 ms
19,004 KB
testcase_46 AC 792 ms
16,308 KB
testcase_47 AC 1,237 ms
19,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UF:
    def __init__(self,n):
        self.p = [-1]*n
    def f(self,x):
        if self.p[x]<0: return x
        else: self.p[x] = self.f(self.p[x]); return self.p[x]
    def u(self,x,y):
        x = self.f(x); y = self.f(y)
        if x==y: return
        if -self.p[x]<-self.p[y]: x,y = y,x
        self.p[x] += self.p[y]; self.p[y] = x
    def n(self,x): return -self.p[self.f(x)]
h,w = map(int,input().split())
g = [list(input()) for _ in range(h)]
uf = UF(h*w)
for i in range(h):
    for j in range(w-1):
        if g[i][j]==g[i][j+1]: uf.u(i*w+j,i*w+(j+1))
for j in range(w):
    for i in range(h-1):
        if g[i][j]==g[i+1][j]: uf.u(i*w+j,(i+1)*w+j)
for i in range(h):
    for j in range(w):
        if uf.n(i*w+j)>=4: g[i][j] = "."
for a in g: print("".join(a))
0