結果
問題 | No.697 池の数はいくつか |
ユーザー | 👑 CleyL |
提出日時 | 2022-01-05 08:51:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,419 bytes |
コンパイル時間 | 751 ms |
コンパイル使用メモリ | 74,996 KB |
実行使用メモリ | 109,048 KB |
最終ジャッジ日時 | 2024-05-04 07:32:31 |
合計ジャッジ時間 | 13,190 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 1,550 ms
109,008 KB |
testcase_30 | WA | - |
testcase_31 | AC | 1,523 ms
108,764 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include <iostream> #include <vector> using namespace std; struct UnionFind { int n; vector<int> par; vector<int> size_; int whole; UnionFind(int n_) : n(n_), par((size_t)n_), size_((size_t)n_,1), whole(n_){ for(int i = 0; n > i; i++)par[i] = i; } int root(int x){ if(par[x] == x)return x; return par[x] = root(par[x]); } void unite(int a,int b){ int ra = root(a); int rb = root(b); if(ra==rb)return; if(size(ra) > size(rb)) swap(ra,rb); par[ra] = rb; size_[rb] += size_[ra]; whole--; } bool same(int a, int b){ return root(a) == root(b); } int size(int a){ return size_[root(a)]; } void debug(){ for(int i = 0; n > i; i++){ cout << size_[root(i)] << " "; } cout << endl; return; } }; int main(){ int h,w;cin>>h>>w; vector<vector<int>> A(h,vector<int>(w)); for(int i = 0; h > i; i++){ for(int j = 0; w > j; j++){ cin>>A[i][j]; } } UnionFind B(h*w); int zero = 0; for(int i = 0; h > i; i++){ for(int j = 0; w > j; j++){ if(A[i][j] == 1){ if(i+1 != h && A[i+1][j] == 1){ B.unite(w*i+j,w*(i+1)+j); } if(i+1 != w && A[i][j+1] == 1){ B.unite(w*i+j,w*i+j+1); } }else zero++; } } cout << B.whole-zero << endl; }