結果

問題 No.697 池の数はいくつか
ユーザー prtoq3prtoq3
提出日時 2018-10-21 18:27:51
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,765 ms / 6,000 ms
コード長 955 bytes
コンパイル時間 2,342 ms
コンパイル使用メモリ 163,044 KB
実行使用メモリ 111,984 KB
最終ジャッジ日時 2024-11-08 08:08:02
合計ジャッジ時間 15,408 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 185 ms
11,392 KB
testcase_25 AC 185 ms
11,264 KB
testcase_26 AC 183 ms
11,136 KB
testcase_27 AC 183 ms
11,264 KB
testcase_28 AC 184 ms
11,264 KB
testcase_29 AC 1,765 ms
111,984 KB
testcase_30 AC 1,609 ms
38,656 KB
testcase_31 AC 1,744 ms
111,980 KB
testcase_32 AC 1,611 ms
38,528 KB
testcase_33 AC 1,623 ms
38,656 KB
testcase_34 AC 1,609 ms
38,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MOD = 1000000007;
const int MAX_N = 3010;

int dx[] = {1, 0, -1, 0};
int dy[] = {0, 1, 0, -1};

#define REP(i,n) for((i)=0;(i)<(int)(n);(i)++)

int field[MAX_N][MAX_N];
int h, w;
typedef pair<int, int> P;

void dfs(int x, int y){
    stack<P> s;
    s.push(P(x, y));

    while(s.size()){
        P p = s.top(); s.pop();
        field[p.first][p.second] = 0;

        for (int i = 0; i < 4; i++){
            int nx = p.first + dx[i];
            int ny = p.second + dy[i];
            if (0 <= nx && nx < h && 0 <= ny && ny < w && field[nx][ny]){
                s.push(P(nx, ny));
            }
        }
    }
}

int main(){
    cin >> h >> w;
    int i, j;
    REP(i, h) REP(j, w) cin >> field[i][j];
    
    int ans = 0;
    REP(i, h) REP(j, w){
        if (field[i][j]){
            dfs(i, j);
            ans++;
        }
    }

    cout << ans << endl;

    return 0;
}
0