「BZOJ1102」[POI2007] 山峰和山谷Grz
Description
FGD小朋友特别喜欢爬山,在爬山的时候他就在研究山峰和山谷。为了能够让他对他的旅程有一个安排,他想知道山峰和山谷的数量。
给定一个地图,为FGD想要旅行的区域,地图被分为n*n的网格,每个格子(i,j) 的高度w(i,j)是给定的。
若两个格子有公共顶点,那么他们就是相邻的格子。(所以与(i,j)相邻的格子有(i−1, j−1),(i−1,j),(i−1,j+1),(i,j−1),(i,j+1),(i+1,j−1),(i+1,j),(i+1,j+1))。
我们定义一个格子的集合S为山峰(山谷)当且仅当:
1.S的所有格子都有相同的高度。
2.S的所有格子都联通
3.对于s属于S,与s相邻的s’不属于S。都有ws > ws’(山峰),或者ws < ws’(山谷)。
你的任务是,对于给定的地图,求出山峰和山谷的数量,如果所有格子都有相同的高度,那么整个地图即是山峰,又是山谷。
Input
第一行包含一个正整数n,表示地图的大小(1<=n<=1000)。接下来一个n*n的矩阵,表示地图上每个格子的高度。(0<=w<=1000000000)
Output
应包含两个数,分别表示山峰和山谷的数量。
Sample Input
输入样例1
5
8 8 8 7 7
7 7 8 8 7
7 7 7 7 7
7 8 8 7 8
7 8 8 8 8
输入样例2
5
5 7 8 3 1
5 5 7 6 6
6 6 6 2 8
5 7 2 5 8
7 1 0 1 7
5
8 8 8 7 7
7 7 8 8 7
7 7 7 7 7
7 8 8 7 8
7 8 8 8 8
输入样例2
5
5 7 8 3 1
5 5 7 6 6
6 6 6 2 8
5 7 2 5 8
7 1 0 1 7
Sample Output
输出样例1
2 1
输出样例2
3 3
2 1
输出样例2
3 3
HINT
题解
水-搜索
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
#include<iostream> #include<cstdio> #include<cstdlib> #include<algorithm> #include<cmath> #include<cstring> #include<set> #define inf 1000000000 #define ll long long using namespace std; inline int read() { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } int ans1,ans2; int n,now,mn,mx; int a[1005][1005]; int qx[1000005],qy[1000005]; int xx[8]={1,1,1,-1,-1,-1,0,0},yy[8]={1,0,-1,1,0,-1,1,-1}; bool vis[1005][1005]; void dfs(int x,int y) { int head=0,tail=1; qx[0]=x;qy[0]=y; while(head!=tail) { int x=qx[head],y=qy[head];head++; for(int i=0;i<8;i++) { int nowx=x+xx[i],nowy=y+yy[i]; if(nowx<1||nowy<1||nowx>n||nowy>n)continue; mx=max(mx,a[nowx][nowy]); mn=min(mn,a[nowx][nowy]); if(a[nowx][nowy]==now&&!vis[nowx][nowy]) { vis[nowx][nowy]=1; qx[tail]=nowx;qy[tail]=nowy;tail++; } } } } int main() { n=read(); for(int i=1;i<=n;i++) for(int j=1;j<=n;j++) a[i][j]=read(); for(int i=1;i<=n;i++) for(int j=1;j<=n;j++) if(!vis[i][j]) { now=a[i][j];mn=now;mx=now; dfs(i,j); if(mn<=now&&mx<=now)ans1++; if(mn>=now&&mx>=now)ans2++; } printf("%d %d\n",ans1,ans2); return 0; } |
学长,这个应该是bfs吧…