[POI2007]POW-The Flood
題目描述
給定一張地勢圖,所有的點都被水淹沒,現在有一些關鍵點,要求放最少的水泵使所有關鍵點的水都被抽干
輸入輸出格式
輸入格式:
In the first line of the standard input there are two integers??and?, separated by a single space,. The following??lines contain the description of the map. The?'th linedescribes the?'th row ofunitary squares in the map. It contains??integers?, separated by single spaces,,?.
The number??describes the?'th square of the 的高度都不大于 b 的高度。
即h[b]>=max(h[i])
因此我們可以考慮把所有格子的高度從小到大排序,我們把每一個格子建成一個集合。
然后按照海拔高度從小到大掃描格子,對于當前的格子 i,我們找到所有與 i 相鄰并且海拔高度不大于格子 i 的格子,
我們發現如果這些格子中的任意一個洪水要是被解決了,那么格子 i 的洪水也可以被解決,所以我們合并這些格子。
對于當前的格子 i,如果它必須被清理且與它相鄰的格子集合中沒有任何一個被清理,我們則把這個集合的清理狀態標記為真,然后答案加 1。
集合和每個格子是否被清理用并查集來維護就可以了。 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 using namespace std; 6 struct node 7 { 8 int s,x,y; 9 } city[1000001],maze[100001]; 10 pair<int,int> set[1001][1001]; 11 int dx[5]={0,1,-1,0,0}; 12 int dy[5]={0,0,0,1,-1}; 13 int n,m,a[1001][1001],tot,cnt,vis[1001][1001],ans; 14 bool cmp(node a,node b) 15 { 16 return (a.s<b.s); 17 } 18 pair<int,int> find(pair<int,int> x) 19 { 20 if (set[x.first][x.second]!=x) set[x.first][x.second]=find(set[x.first][x.second]); 21 return set[x.first][x.second]; 22 } 23 void union_set(pair<int,int> x,pair<int,int> y) 24 { 25 x=find(x),y=find(y); 26 set[x.first][x.second]=y; 27 vis[y.first][y.second]|=vis[x.first][x.second]; 28 } 29 void exam(int x,int y) 30 { 31 for(int i=1;i<=4;i++) 32 { 33 int tx=x+dx[i], ty=y+dy[i]; 34 if(tx<=0||ty<=0||tx>m||ty>n) continue; 35 if(a[tx][ty]>a[x][y]) continue; 36 union_set(make_pair(x, y), make_pair(tx, ty)); 37 } 38 } 39 int main() 40 { 41 int i,j; 42 cin>>n>>m; 43 for (i=1; i<=n; i++) 44 { 45 for (j=1; j<=m; j++) 46 { 47 scanf("%d",&a[i][j]); 48 if (a[i][j]<=0) 49 { 50 a[i][j]=-a[i][j]; 51 } 52 else 53 { 54 city[++tot]=(node){a[i][j],i,j}; 55 } 56 maze[++cnt]=(node){a[i][j],i,j}; 57 set[i][j]=make_pair(i,j); 58 } 59 } 60 sort(maze+1,maze+cnt+1,cmp); 61 sort(city+1,city+tot+1,cmp); 62 for (i=1; i<=tot; i++) 63 { 64 for (j=1; j<=cnt,city[i].s>=maze[j].s; j++) 65 { 66 exam(maze[j].x,maze[j].y); 67 pair<int,int> x=find(make_pair(city[i].x,city[i].y)); 68 if (vis[x.first][x.second]==0) 69 { 70 ans++; 71 vis[x.first][x.second]=1; 72 } 73 } 74 } 75 cout<<ans; 76 }
?
轉載于:https://www.cnblogs.com/Y-E-T-I/p/7221242.html
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的[POI2007]POW-The Flood的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Java中Semaphore(信号量)
- 下一篇: 新手算法学习之路----二叉树(二叉树最