Submission #704273

# Submission time Handle Problem Language Result Execution time Memory
704273 2023-03-02T02:27:29 Z willychan Dijamant (COCI22_dijamant) C++14
0 / 70
2 ms 4820 KB
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
//#include<bits/extc++.h>
//__gnu_pbds


bool arr[2005][2005];

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

int n,m;
bool inbound(int x,int y){
	return (x>=0 && x<=n+3 && y>=0 && y<=m+3);
}

int xpymax,xpymin,xmymax,xmymin;
int cnt = 0;
void dfs(int x,int y){
	arr[x][y]=1;
	cnt++;
	xpymax = max(xpymax,x+y);
	xpymin = min(xpymin,x+y);
	xmymax = max(xmymax,x-y);
	xmymin = min(xmymin,x-y);
	for(int i=0;i<4;i++){
		if(inbound(x+dx[i] , y+dy[i])){
			if(arr[x+dx[i]][y+dy[i]]==0){
				dfs(x+dx[i],y+dy[i]);
			}
		}
	}
}


int main(){
	ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0);
	cin>>n>>m;	
	for(int i=0;i<2005;i++){
		arr[i][m+4]=1;
		arr[n+4][i]=1;
	}
	for(int i=1;i<=n;i++){
		for(int j=1;j<=m;j++){
			char a;cin>>a;
			if(a=='#') arr[i][j]=1;
		}
	}
	int ans = 0;
	for(int i=1;i<=n;i++){
		for(int j=1;j<=m;j++){
			if(!arr[i][j]) {
				xpymax = INT_MIN;
				xpymin = INT_MAX;
				xmymax = INT_MIN;
				xmymin = INT_MAX;
				cnt = 0;
				dfs(i,j);
				//cout<<i<<" "<<j<<"\n";
			//	cout<<xpymax<<" "<<xpymin<<" "<<xmymax<<' '<<xmymin<<" "<<cnt<<"\n";
				if(xpymax-xpymin!=xmymax-xmymin) continue;
				ll l = (xpymax-xpymin)/2+1;
				ll area = 2*(l-1)*(l-1)+(2*l-1);
				if(cnt==area){
					ans++;
				}
	
						
			}
		}
	}
	cout<<ans<<"\n";
		
	return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 2 ms 4820 KB Output is correct
2 Correct 2 ms 4180 KB Output is correct
3 Incorrect 2 ms 4180 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 4820 KB Output is correct
2 Correct 2 ms 4180 KB Output is correct
3 Incorrect 2 ms 4180 KB Output isn't correct
4 Halted 0 ms 0 KB -