結果

問題 No.697 池の数はいくつか
ユーザー beetbeet
提出日時 2018-11-15 17:28:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,801 ms / 6,000 ms
コード長 1,109 bytes
コンパイル時間 2,591 ms
コンパイル使用メモリ 207,096 KB
実行使用メモリ 74,880 KB
最終ジャッジ日時 2024-11-08 08:08:44
合計ジャッジ時間 17,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
39,296 KB
testcase_01 AC 28 ms
39,040 KB
testcase_02 AC 29 ms
39,168 KB
testcase_03 AC 29 ms
39,296 KB
testcase_04 AC 29 ms
39,168 KB
testcase_05 AC 29 ms
39,168 KB
testcase_06 AC 29 ms
39,296 KB
testcase_07 AC 29 ms
39,168 KB
testcase_08 AC 29 ms
39,296 KB
testcase_09 AC 29 ms
39,168 KB
testcase_10 AC 29 ms
39,296 KB
testcase_11 AC 29 ms
39,040 KB
testcase_12 AC 29 ms
39,168 KB
testcase_13 AC 28 ms
39,296 KB
testcase_14 AC 28 ms
39,168 KB
testcase_15 AC 28 ms
39,168 KB
testcase_16 AC 28 ms
39,168 KB
testcase_17 AC 29 ms
39,296 KB
testcase_18 AC 29 ms
39,168 KB
testcase_19 AC 29 ms
39,040 KB
testcase_20 AC 30 ms
39,296 KB
testcase_21 AC 28 ms
39,168 KB
testcase_22 AC 28 ms
39,168 KB
testcase_23 AC 28 ms
39,296 KB
testcase_24 AC 223 ms
46,976 KB
testcase_25 AC 225 ms
47,104 KB
testcase_26 AC 221 ms
47,104 KB
testcase_27 AC 221 ms
47,232 KB
testcase_28 AC 223 ms
46,976 KB
testcase_29 AC 1,700 ms
74,880 KB
testcase_30 AC 1,751 ms
74,752 KB
testcase_31 AC 1,718 ms
74,624 KB
testcase_32 AC 1,741 ms
74,752 KB
testcase_33 AC 1,801 ms
74,752 KB
testcase_34 AC 1,742 ms
74,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
const int MAX = 3030;
int st[MAX][MAX],dp[MAX][MAX];
signed main(){
  int h,w;
  cin>>h>>w;
  for(int i=0;i<h;i++)
    for(int j=0;j<w;j++)
      cin>>st[i][j];
  memset(dp,0,sizeof(dp));
  int ans=0;

  auto in=[&](int y,int x){return 0<=y&&y<h&&0<=x&&x<w;};
  int dy[]={0,0,1,-1};
  int dx[]={1,-1,0,0};
  
  auto bfs=
    [&](int y,int x){
      using P = pair<int, int>;
      queue<P> q;
      q.emplace(y,x);
      dp[y][x]=1;
      while(!q.empty()){
        tie(y,x)=q.front();q.pop();
        for(int k=0;k<4;k++){
          int ny=y+dy[k],nx=x+dx[k];
          if(!in(ny,nx)||!st[ny][nx]) continue;
          if(dp[ny][nx]) continue;
          q.emplace(ny,nx);
          dp[ny][nx]=1;
        }
      }
      ans++;      
    };
  
  for(int i=0;i<h;i++)
    for(int j=0;j<w;j++)
      if(st[i][j]&&!dp[i][j]) bfs(i,j);
  cout<<ans<<endl;
  return 0;
}
0