結果

問題 No.2946 Puyo
ユーザー tipstar0125tipstar0125
提出日時 2024-10-25 21:47:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 1,142 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 138,264 KB
最終ジャッジ日時 2024-10-25 21:48:06
合計ジャッジ時間 16,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,712 KB
testcase_01 AC 49 ms
61,780 KB
testcase_02 AC 46 ms
60,616 KB
testcase_03 AC 513 ms
137,752 KB
testcase_04 AC 526 ms
137,664 KB
testcase_05 AC 543 ms
138,264 KB
testcase_06 AC 532 ms
137,952 KB
testcase_07 AC 516 ms
137,760 KB
testcase_08 AC 148 ms
83,200 KB
testcase_09 AC 269 ms
98,456 KB
testcase_10 AC 139 ms
81,704 KB
testcase_11 AC 332 ms
109,308 KB
testcase_12 AC 140 ms
82,020 KB
testcase_13 AC 55 ms
64,780 KB
testcase_14 AC 161 ms
85,068 KB
testcase_15 AC 117 ms
81,164 KB
testcase_16 AC 174 ms
89,536 KB
testcase_17 AC 322 ms
112,832 KB
testcase_18 AC 102 ms
78,100 KB
testcase_19 AC 219 ms
92,684 KB
testcase_20 AC 241 ms
96,544 KB
testcase_21 AC 317 ms
108,528 KB
testcase_22 AC 138 ms
81,816 KB
testcase_23 AC 232 ms
94,944 KB
testcase_24 AC 397 ms
116,012 KB
testcase_25 AC 361 ms
111,196 KB
testcase_26 AC 397 ms
115,008 KB
testcase_27 AC 100 ms
78,060 KB
testcase_28 AC 320 ms
110,112 KB
testcase_29 AC 411 ms
122,800 KB
testcase_30 AC 275 ms
104,156 KB
testcase_31 AC 356 ms
115,396 KB
testcase_32 AC 352 ms
113,724 KB
testcase_33 AC 320 ms
109,004 KB
testcase_34 AC 401 ms
122,128 KB
testcase_35 AC 353 ms
114,860 KB
testcase_36 AC 366 ms
116,408 KB
testcase_37 AC 411 ms
119,188 KB
testcase_38 AC 321 ms
107,876 KB
testcase_39 AC 313 ms
106,252 KB
testcase_40 AC 244 ms
97,264 KB
testcase_41 AC 398 ms
117,544 KB
testcase_42 AC 388 ms
113,196 KB
testcase_43 AC 329 ms
113,956 KB
testcase_44 AC 366 ms
127,028 KB
testcase_45 AC 323 ms
111,264 KB
testcase_46 AC 246 ms
98,188 KB
testcase_47 AC 310 ms
107,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from copy import deepcopy
H,W=map(int,input().split())
G=[list(input()) for _ in range(H)]
ans=deepcopy(G)
dij=[(1,0),(-1,0),(0,1),(0,-1)]
vis=[[False for _ in range(W)] for _ in range(H)]

for i in range(H):
    for j in range(W):
        if vis[i][j]:
            continue
        if G[i][j]==".":
            continue
        vis[i][j]=True
        Q=deque()
        Q.append((i,j))
        cands=[(i,j)]
        while len(Q):
            pi,pj=Q.popleft()
            for di,dj in dij:
                ni=pi+di
                nj=pj+dj
                if ni<0 or H<=ni:
                    continue
                if nj<0 or W<=nj:
                    continue
                if vis[ni][nj]:
                    continue
                if G[ni][nj]==".":
                    continue
                if G[pi][pj]==G[ni][nj]:
                    vis[ni][nj]=True
                    Q.append((ni,nj))
                    cands.append((ni,nj))
        if len(cands)>=4:
            for ni,nj in cands:
                ans[ni][nj]="."

for row in ans:
    for x in row:
        print(x,end="")
    print()


0