結果
問題 | No.697 池の数はいくつか |
ユーザー | Konton7 |
提出日時 | 2020-01-14 16:22:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,375 bytes |
コンパイル時間 | 2,619 ms |
コンパイル使用メモリ | 216,136 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-04 06:48:17 |
合計ジャッジ時間 | 18,799 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; vector<vector<bool>> field; vector<bool> x; void dfs(int y, int x){ field[y][x] = 0; if (field[y+1][x]) dfs(y+1, x); if (field[y-1][x]) dfs(y-1, x); if (field[y][x+1]) dfs(y, x+1); if (field[y][x-1]) dfs(y, x-1); return; } void bfs(int y, int x){ vector<pair<int, int>> search; vector<pair<int, int>> new_search; field[y][x] = 0; search.push_back(make_pair(y, x)); while (!search.empty()){ for (auto z : search){ if (field[z.first+1][z.second]){ field[z.first+1][z.second] = 0; new_search.push_back(make_pair(z.first+1, z.second)); } if (field[z.first-1][z.second]){ field[z.first-1][z.second] = 0; new_search.push_back(make_pair(z.first-1, z.second)); } if (field[z.first][z.second+1]){ field[z.first][z.second+1] = 0; new_search.push_back(make_pair(z.first, z.second+1)); } if (field[z.first][z.second-1]){ field[z.first][z.second-1] = 0; new_search.push_back(make_pair(z.first, z.second-1)); } } search.clear(); search = new_search; new_search.clear(); } return; } int main(){ int h, w, k, counter; cin >> h >> w; counter = 0; for (int i = 0; i < w + 2; i++) x.push_back(0); field.push_back(x); x.clear(); for (int i = 0; i < h; i++){ x.push_back(0); for (int j = 0; j < w; j++){ cin >> k; x.push_back(k); } x.push_back(0); field.push_back(x); x.clear(); } for (int i = 0; i < w + 2; i++) x.push_back(0); field.push_back(x); for (auto v : field){ for (auto w : v) cout << w; cout << endl; } for (int i = 0; i < h; i++){ for (int j = 0; j < w; j++){ if (field[i+1][j+1]){ bfs(i+1, j+1); counter++; } } } // for (auto v : field){ // for (auto w : v) // cout << w; // cout << endl; // } cout << counter << endl; return 0; }