結果

問題 No.697 池の数はいくつか
ユーザー hiro71687khiro71687k
提出日時 2024-11-26 16:00:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,686 ms / 6,000 ms
コード長 1,807 bytes
コンパイル時間 4,572 ms
コンパイル使用メモリ 264,932 KB
実行使用メモリ 144,164 KB
最終ジャッジ日時 2024-11-26 16:00:24
合計ジャッジ時間 18,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 184 ms
19,056 KB
testcase_25 AC 186 ms
18,960 KB
testcase_26 AC 187 ms
18,996 KB
testcase_27 AC 188 ms
18,960 KB
testcase_28 AC 190 ms
19,092 KB
testcase_29 AC 1,547 ms
144,056 KB
testcase_30 AC 1,686 ms
144,128 KB
testcase_31 AC 1,564 ms
144,148 KB
testcase_32 AC 1,638 ms
144,164 KB
testcase_33 AC 1,620 ms
143,936 KB
testcase_34 AC 1,648 ms
144,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll = int;
using ld = long double;
struct unionfind
{
    vector<ll>par,siz;
    unionfind(ll n): par(n,-1),siz(n,1){}
    ll root(ll x){
        if (par[x]==-1)
        {
            return x;
        }else{
            return par[x]=root(par[x]);
        }
    }
    bool issame(ll x,ll y){
        return root(x)==root(y);
    }
    bool unite(ll x,ll y){
        x=root(x);
        y=root(y);
        if (x==y)
        {
            return false;
        }
        if (siz[x]<siz[y])
        {
            swap(x,y);
        }
        par[y]=x;
        siz[x]+=siz[y];
        return true;
    }
    ll size(ll x){
        return siz[root(x)];
    }
};
int main(){
    ll h,w;
    cin >> h >> w;
    vector<vector<ll>>a(h,vector<ll>(w));
    for (ll i = 0; i < h; i++)
    {
        for (ll j = 0; j < w; j++)
        {
            cin >> a[i][j];
        }
    }
    unionfind uf(h*w);
    for (ll i = 0; i < h; i++)
    {
        for (ll j = 0; j < w; j++)
        {
            if (i!=0)
            {
                if (a[i-1][j]&&a[i][j])
                {
                    uf.unite((i-1)*w+j,i*w+j);
                }
            }
            if (j!=0)
            {
                if (a[i][j-1]&&a[i][j])
                {
                    uf.unite(i*w+j-1,i*w+j);
                }
            }
        }
    }
    vector<ll>memo(h*w,0);
    ll ans=0;
    for (ll i = 0; i < h; i++)
    {
        for (ll j = 0; j < w; j++)
        {
            if (a[i][j]==0)
            {
                continue;
            }
            if (memo[uf.root(i*w+j)]==0)
            {
                ans++;
            }
            memo[uf.root(i*w+j)]++;
        }
    }
    cout << ans << endl;
}
0