結果

問題 No.2946 Puyo
ユーザー cled0328cled0328
提出日時 2024-10-25 21:27:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 210,484 KB
実行使用メモリ 9,104 KB
最終ジャッジ日時 2024-10-25 21:27:11
合計ジャッジ時間 5,555 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 45 ms
9,072 KB
testcase_04 AC 45 ms
9,048 KB
testcase_05 AC 46 ms
9,104 KB
testcase_06 AC 45 ms
9,104 KB
testcase_07 AC 45 ms
9,016 KB
testcase_08 AC 5 ms
6,816 KB
testcase_09 AC 16 ms
6,820 KB
testcase_10 AC 4 ms
6,820 KB
testcase_11 AC 24 ms
6,820 KB
testcase_12 AC 5 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 7 ms
6,820 KB
testcase_15 AC 5 ms
6,816 KB
testcase_16 AC 10 ms
6,820 KB
testcase_17 AC 31 ms
6,816 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 AC 16 ms
6,816 KB
testcase_20 AC 21 ms
6,820 KB
testcase_21 AC 35 ms
6,816 KB
testcase_22 AC 6 ms
6,820 KB
testcase_23 AC 20 ms
6,820 KB
testcase_24 AC 45 ms
6,816 KB
testcase_25 AC 39 ms
6,816 KB
testcase_26 AC 43 ms
6,820 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 29 ms
6,816 KB
testcase_29 AC 40 ms
7,004 KB
testcase_30 AC 23 ms
6,820 KB
testcase_31 AC 34 ms
6,816 KB
testcase_32 AC 34 ms
6,820 KB
testcase_33 AC 30 ms
6,820 KB
testcase_34 AC 43 ms
7,680 KB
testcase_35 AC 36 ms
6,816 KB
testcase_36 AC 36 ms
6,820 KB
testcase_37 AC 38 ms
6,820 KB
testcase_38 AC 27 ms
6,816 KB
testcase_39 AC 26 ms
6,816 KB
testcase_40 AC 17 ms
6,820 KB
testcase_41 AC 33 ms
6,832 KB
testcase_42 AC 30 ms
6,820 KB
testcase_43 AC 28 ms
6,820 KB
testcase_44 AC 34 ms
6,820 KB
testcase_45 AC 28 ms
6,816 KB
testcase_46 AC 18 ms
6,820 KB
testcase_47 AC 27 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/dsu>
using namespace std;

int main(){
    int h,w;cin>>h>>w;
    atcoder::dsu uf(h*w);
    vector<string> g(h);
    for(int i=0;i<h;i++)cin>>g[i];
    for(int i=0;i<h;i++){
        for(int j=0;j<w;j++){
            if(i&&g[i-1][j]==g[i][j])uf.merge((i-1)*w+j,i*w+j);
            if(j&&g[i][j-1]==g[i][j])uf.merge(i*w+j-1,i*w+j);
        }
    }
    for(int i=0;i<h;i++){
        for(int j=0;j<w;j++){
            cout<<(uf.size(i*w+j)>=4?'.':g[i][j]);
        }
        cout<<"\n";
    }
}
0