結果

問題 No.697 池の数はいくつか
ユーザー SSRSSSRS
提出日時 2020-11-12 07:51:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,671 ms / 6,000 ms
コード長 957 bytes
コンパイル時間 981 ms
コンパイル使用メモリ 84,292 KB
実行使用メモリ 40,320 KB
最終ジャッジ日時 2024-04-25 20:55:47
合計ジャッジ時間 13,455 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 193 ms
7,808 KB
testcase_25 AC 183 ms
7,680 KB
testcase_26 AC 179 ms
7,808 KB
testcase_27 AC 178 ms
7,680 KB
testcase_28 AC 179 ms
7,552 KB
testcase_29 AC 1,598 ms
40,064 KB
testcase_30 AC 1,580 ms
40,064 KB
testcase_31 AC 1,671 ms
40,064 KB
testcase_32 AC 1,602 ms
40,192 KB
testcase_33 AC 1,569 ms
40,320 KB
testcase_34 AC 1,591 ms
40,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
#include <utility>
using namespace std;
vector<int> dy = {1, 0, -1, 0};
vector<int> dx = {0, 1, 0, -1};
int main(){
	int H, W;
	cin >> H >> W;
	vector<vector<int>> A(H + 2, vector<int>(W + 2, 0));
	for (int i = 1; i <= H; i++){
		for (int j = 1; j <= W; j++){
			cin >> A[i][j];
		}
	}
	vector<vector<bool>> used(H + 2, vector<bool>(W + 2, false));
	int ans = 0;
	for (int i = 1; i <= H; i++){
		for (int j = 1; j <= W; j++){
			if (A[i][j] == 1 && !used[i][j]){
				used[i][j] = true;
				ans++;
				queue<pair<int, int>> Q;
				Q.push(make_pair(i, j));
				while (!Q.empty()){
					int y = Q.front().first;
					int x = Q.front().second;
					Q.pop();
					for (int k = 0; k < 4; k++){
						int y2 = y + dy[k];
						int x2 = x + dx[k];
						if (A[y2][x2] == 1 && !used[y2][x2]){
							used[y2][x2] = true;
							Q.push(make_pair(y2, x2));
						}
					}
				}
			}
		}
	}
	cout << ans << endl;
}
0