結果

問題 No.2946 Puyo
ユーザー timitimi
提出日時 2024-10-25 21:27:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 948 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 155,512 KB
最終ジャッジ日時 2024-10-25 21:27:21
合計ジャッジ時間 10,237 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,708 KB
testcase_01 AC 47 ms
52,404 KB
testcase_02 AC 37 ms
53,604 KB
testcase_03 AC 212 ms
155,192 KB
testcase_04 AC 207 ms
155,512 KB
testcase_05 AC 208 ms
155,316 KB
testcase_06 AC 208 ms
154,992 KB
testcase_07 AC 256 ms
155,368 KB
testcase_08 AC 68 ms
76,164 KB
testcase_09 AC 139 ms
101,936 KB
testcase_10 AC 89 ms
80,352 KB
testcase_11 AC 145 ms
115,956 KB
testcase_12 AC 69 ms
75,560 KB
testcase_13 AC 37 ms
53,212 KB
testcase_14 AC 127 ms
85,408 KB
testcase_15 AC 95 ms
80,164 KB
testcase_16 AC 122 ms
89,620 KB
testcase_17 AC 204 ms
121,004 KB
testcase_18 AC 81 ms
76,692 KB
testcase_19 AC 154 ms
94,488 KB
testcase_20 AC 180 ms
99,676 KB
testcase_21 AC 212 ms
115,932 KB
testcase_22 AC 114 ms
80,872 KB
testcase_23 AC 189 ms
98,656 KB
testcase_24 AC 251 ms
127,500 KB
testcase_25 AC 237 ms
119,972 KB
testcase_26 AC 250 ms
125,624 KB
testcase_27 AC 102 ms
76,964 KB
testcase_28 AC 177 ms
115,036 KB
testcase_29 AC 221 ms
132,020 KB
testcase_30 AC 164 ms
106,264 KB
testcase_31 AC 199 ms
122,296 KB
testcase_32 AC 191 ms
122,704 KB
testcase_33 AC 193 ms
115,732 KB
testcase_34 AC 217 ms
133,212 KB
testcase_35 AC 202 ms
124,020 KB
testcase_36 AC 206 ms
125,572 KB
testcase_37 AC 215 ms
129,908 KB
testcase_38 AC 184 ms
114,396 KB
testcase_39 AC 172 ms
112,556 KB
testcase_40 AC 147 ms
99,844 KB
testcase_41 AC 207 ms
127,508 KB
testcase_42 AC 192 ms
122,628 KB
testcase_43 AC 197 ms
112,648 KB
testcase_44 AC 188 ms
121,644 KB
testcase_45 AC 175 ms
114,048 KB
testcase_46 AC 149 ms
99,668 KB
testcase_47 AC 178 ms
112,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int, input().split())
#A=list(map(int, input().split()))
A=[]
for i in range(H):
  s=list(input())
  A.append(s)
  
N=H*W
par=[i for i in range(N)]
rank=[0]*(N)
friend=[0]*N
block=[0]*N
size=[1]*N
def find(x):
  if par[x]==x:
    return x
  else:
    par[x]=find(par[x])
    return par[x]
 
#同じ集合か判定
def same(x,y):
  return find(x)==find(y)
 
def union(x,y):
  x=find(x)
  y=find(y)
  if x==y:
    return 
  if rank[x]>rank[y]:
    par[y]=x
    size[x]+=size[y]
  else:
    par[x]=y
    size[y]+=size[x]
    if rank[x]==rank[y]:
      rank[y]+=1
       
       
for h in range(H):
  for w in range(W):
    if h!=0:
      if A[h][w]==A[h-1][w]:
        p=h*W+w;q=(h-1)*W+w
        union(p,q)
    if w!=0:
      if A[h][w]==A[h][w-1]:
        p=h*W+w;q=h*W+w-1
        union(p,q)

ans=[]
for h in range(H):
  for w in range(W):
    p=h*W+w 
    s=size[find(p)]
    if s>=4:
      A[h][w]='.'
    
for a in A:
  print(''.join(a))
0