結果

問題 No.2946 Puyo
ユーザー ゼットゼット
提出日時 2024-10-25 21:30:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 517 ms / 2,000 ms
コード長 1,003 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 176,096 KB
最終ジャッジ日時 2024-10-25 21:30:43
合計ジャッジ時間 15,816 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,292 KB
testcase_01 AC 37 ms
52,752 KB
testcase_02 AC 36 ms
53,380 KB
testcase_03 AC 343 ms
176,096 KB
testcase_04 AC 344 ms
175,908 KB
testcase_05 AC 331 ms
175,960 KB
testcase_06 AC 340 ms
175,740 KB
testcase_07 AC 345 ms
175,532 KB
testcase_08 AC 95 ms
83,776 KB
testcase_09 AC 177 ms
108,880 KB
testcase_10 AC 103 ms
82,484 KB
testcase_11 AC 218 ms
126,732 KB
testcase_12 AC 99 ms
83,548 KB
testcase_13 AC 39 ms
53,864 KB
testcase_14 AC 145 ms
87,428 KB
testcase_15 AC 114 ms
81,732 KB
testcase_16 AC 161 ms
92,808 KB
testcase_17 AC 279 ms
132,612 KB
testcase_18 AC 94 ms
77,380 KB
testcase_19 AC 200 ms
98,548 KB
testcase_20 AC 228 ms
106,040 KB
testcase_21 AC 308 ms
126,240 KB
testcase_22 AC 135 ms
82,840 KB
testcase_23 AC 234 ms
104,196 KB
testcase_24 AC 383 ms
141,036 KB
testcase_25 AC 345 ms
132,284 KB
testcase_26 AC 377 ms
138,708 KB
testcase_27 AC 102 ms
77,460 KB
testcase_28 AC 381 ms
126,340 KB
testcase_29 AC 517 ms
148,120 KB
testcase_30 AC 324 ms
114,868 KB
testcase_31 AC 435 ms
135,188 KB
testcase_32 AC 431 ms
135,252 KB
testcase_33 AC 375 ms
127,004 KB
testcase_34 AC 478 ms
150,296 KB
testcase_35 AC 422 ms
137,996 KB
testcase_36 AC 399 ms
139,308 KB
testcase_37 AC 405 ms
145,192 KB
testcase_38 AC 307 ms
125,212 KB
testcase_39 AC 287 ms
122,316 KB
testcase_40 AC 218 ms
106,324 KB
testcase_41 AC 340 ms
141,524 KB
testcase_42 AC 319 ms
134,860 KB
testcase_43 AC 361 ms
123,124 KB
testcase_44 AC 420 ms
134,828 KB
testcase_45 AC 394 ms
124,452 KB
testcase_46 AC 281 ms
106,248 KB
testcase_47 AC 366 ms
122,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class unif:
  def __init__(self,n):
    self.pare=[-1]*n
    self.size=[1]*n
  def root(self,x):
    while self.pare[x]!=-1:
      x=self.pare[x]
    return x
  def unite(self,u,v):
    rootu=self.root(u)
    rootv=self.root(v)
    if rootu!=rootv:
      if self.size[rootu]>=self.size[rootv]:
        self.pare[rootv]=rootu
        self.size[rootu]+=self.size[rootv]
      else:
        self.pare[rootu]=rootv
        self.size[rootv]+=self.size[rootu]
  def same(self,s,t):
    return self.root(s)==self.root(t)
H,W=map(int,input().split())
A=[input() for i in range(H)]
result=[[0]*W for i in range(H)]
for i in range(H):
  for j in range(W):
    result[i][j]=A[i][j]
Z=unif(H*W)
for i in range(H):
  for j in range(W):
    if i<H-1:
      if A[i][j]==A[i+1][j]:
        Z.unite(i*W+j,(i+1)*W+j)
    if j<W-1:
      if A[i][j]==A[i][j+1]:
        Z.unite(i*W+j,i*W+j+1)
for i in range(H):
  for j in range(W):
    x=Z.root(i*W+j)
    if Z.size[x]>=4:
      result[i][j]='.'
  print(*result[i],sep='')
0