結果

問題 No.697 池の数はいくつか
ユーザー prtoq3prtoq3
提出日時 2018-10-21 18:21:45
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 767 bytes
コンパイル時間 1,521 ms
コンパイル使用メモリ 158,912 KB
実行使用メモリ 601,176 KB
最終ジャッジ日時 2024-05-04 06:18:02
合計ジャッジ時間 12,587 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 159 ms
15,728 KB
testcase_25 AC 149 ms
14,924 KB
testcase_26 AC 150 ms
15,764 KB
testcase_27 AC 148 ms
16,388 KB
testcase_28 AC 154 ms
16,136 KB
testcase_29 MLE -
testcase_30 AC 1,350 ms
38,448 KB
testcase_31 MLE -
testcase_32 AC 1,401 ms
38,596 KB
testcase_33 AC 1,346 ms
38,568 KB
testcase_34 AC 1,358 ms
38,676 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;

void dfs(int x, int y){
    field[x][y] = 0;
    for (int i = 0; i < 4; i++){
        int nx = x + dx[i];
        int ny = y + dy[i];
        if (0 <= nx && nx < h && 0 <= ny && ny < w && field[nx][ny]){
            dfs(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