結果
問題 | No.697 池の数はいくつか |
ユーザー | glreto |
提出日時 | 2020-11-01 18:37:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,049 bytes |
コンパイル時間 | 1,710 ms |
コンパイル使用メモリ | 175,120 KB |
実行使用メモリ | 460,416 KB |
最終ジャッジ日時 | 2024-05-04 07:10:35 |
合計ジャッジ時間 | 13,703 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,948 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | AC | 172 ms
7,424 KB |
testcase_25 | AC | 158 ms
7,424 KB |
testcase_26 | AC | 162 ms
7,424 KB |
testcase_27 | AC | 157 ms
7,424 KB |
testcase_28 | AC | 165 ms
7,424 KB |
testcase_29 | MLE | - |
testcase_30 | AC | 1,488 ms
38,528 KB |
testcase_31 | MLE | - |
testcase_32 | AC | 1,446 ms
38,784 KB |
testcase_33 | AC | 1,437 ms
38,528 KB |
testcase_34 | AC | 1,436 ms
38,528 KB |
ソースコード
#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; } vector<vector<int>> mp;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; mp.resize(h,vector<int>(w)); 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; }