結果

問題 No.697 池の数はいくつか
ユーザー SSRSSSRS
提出日時 2020-11-12 07:50:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 957 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 84,728 KB
実行使用メモリ 39,936 KB
最終ジャッジ日時 2024-05-04 07:11:10
合計ジャッジ時間 13,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 RE -
testcase_07 WA -
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 1 ms
6,940 KB
testcase_13 RE -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1 ms
6,944 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 2 ms
6,940 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

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[i];
						int x2 = x + dx[i];
						if (A[y2][x2] == 1 && !used[y2][x2]){
							used[y2][x2] = true;
							Q.push(make_pair(y2, x2));
						}
					}
				}
			}
		}
	}
	cout << ans << endl;
}
0