結果

問題 No.697 池の数はいくつか
ユーザー glretoglreto
提出日時 2020-11-01 18:47:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,021 bytes
コンパイル時間 1,308 ms
コンパイル使用メモリ 166,672 KB
実行使用メモリ 595,632 KB
最終ジャッジ日時 2024-05-04 07:10:52
合計ジャッジ時間 13,073 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 154 ms
12,616 KB
testcase_25 AC 153 ms
14,052 KB
testcase_26 AC 161 ms
12,532 KB
testcase_27 AC 156 ms
12,676 KB
testcase_28 AC 160 ms
12,680 KB
testcase_29 MLE -
testcase_30 AC 1,373 ms
32,728 KB
testcase_31 MLE -
testcase_32 AC 1,380 ms
33,352 KB
testcase_33 AC 1,398 ms
32,736 KB
testcase_34 AC 1,403 ms
33,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits//stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define req(i,n) for(int i = 1;i <=  n; i++)
#define rrep(i,n) for(ll i = n-1;i >= 0;i--)
#define ALL(obj) begin(obj), end(obj)
#define RALL(a) rbegin(a),rend(a)
typedef long long int ll;
typedef long double ld;
const int MAX = 510000;
const ll MOD = 1000000007;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
bool mp[10001][10001];int sum = 0,w,h;
int dx[4]={-1,1,0,0},dy[4]={0,0,1,-1};
void dfs(int i,int j){
    if(mp[i][j]==0)return;
    mp[i][j] = 0;
    rep(k,4){
        if(i+dy[k]<0||i+dy[k]>=h||j+dx[k]<0||j+dx[k]>=w)continue;
        dfs(i+dy[k],j+dx[k]);
    }
}
int main(void) {
    cin >>h>>w;int a;
    rep(i,h) rep(j,w) cin >> mp[i][j];
    rep(i,h) rep(j,w){
        if(mp[i][j]){
            sum++;dfs(i,j);
        }
    }cout << sum <<endl;
}
0