結果

問題 No.697 池の数はいくつか
ユーザー parukiparuki
提出日時 2018-06-14 22:28:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,002 ms / 6,000 ms
コード長 1,979 bytes
コンパイル時間 1,740 ms
コンパイル使用メモリ 168,320 KB
実行使用メモリ 110,092 KB
最終ジャッジ日時 2024-04-25 20:06:25
合計ジャッジ時間 10,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 117 ms
15,448 KB
testcase_25 AC 115 ms
15,388 KB
testcase_26 AC 115 ms
15,532 KB
testcase_27 AC 114 ms
15,528 KB
testcase_28 AC 114 ms
15,472 KB
testcase_29 AC 920 ms
109,888 KB
testcase_30 AC 997 ms
109,872 KB
testcase_31 AC 891 ms
110,052 KB
testcase_32 AC 1,002 ms
110,092 KB
testcase_33 AC 992 ms
109,880 KB
testcase_34 AC 988 ms
109,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define MT make_tuple
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
#define RT return
#define vv(a,b,c,d) vector<vector<a> >(b,vector<a>(c,d))
#define vvv(a,b,c,d,e) vector<vector<vector<a> > >(b,vv(a,c,d,e))
using ll = long long;
using pii = pair<int, int>;
using vi = vector<int>;
using vll = vector<ll>;

const int D[] = { 0,-1,0,1,0 };

class UnionFind{
    int cnt;
    vector<int> par, rank, size;
public:
    UnionFind(){}
    UnionFind(int _n):cnt(_n), par(_n), rank(_n), size(_n, 1){
        for(int i=0;i<_n;++i) par[i]=i;
    }
    int find(int k){
        return (k==par[k])?k:(par[k]=find(par[k]));
    }
    int operator[](int k){
        return find(k);
    }
    int getSize(int k){
        return size[find(k)];
    }
    void unite(int x, int y){
        x = find(x); y = find(y);
        if(x==y) return;
        --cnt;
        if(rank[x] < rank[y]){
            par[x] = y;
            size[y] += size[x];
        }else{
            par[y] = x;
            size[x] += size[y];
            if(rank[y] == rank[x]) ++rank[x];
        }
    }
    int count(){
        return cnt;
    }
};

bitset<3001> A[3001];

int main() {

    int H, W;
    cin >> H >> W;
    UnionFind uf(H*W + 1);
    auto f = [&](int y, int x) {
        RT y*W + x;
    };
    rep(y, H)rep(x, W) {
        int z;
        scanf("%d", &z);
        A[y][x] = z;
        if (!z)uf.unite(H*W, f(y, x));
    }

    rep(y, H)rep(x, W)if (A[y][x]) {
        if (A[y + 1][x])uf.unite(f(y, x), f(y + 1, x));
        if (A[y][x + 1])uf.unite(f(y, x), f(y, x + 1));
    }

    cout << uf.count() - 1 << endl;
}
0