洛谷题目链接:[POI2007]POW-The Flood

题意翻译

Description 你手头有一张该市的地图。这张地图是边长为 m∗n 的矩形,被划分为m∗n个1∗1的小正方形。对于每个小正方形,地图上已经标注了它的海拔高度以及它是否是该市的一个组成部分。地图上的所有部分都被水淹没了。并且,由于这张地图描绘的地面周围都被高山所环绕,洪水不可能自动向外排出。显然,我们没有必要抽干那些非该市的区域。

每个巨型抽水机可以被放在任何一个1∗1正方形上。这些巨型抽水机将持续地抽水直到这个正方形区域里的水被彻底抽干为止。当然,由连通器原理,所有能向这个格子溢水的格子要么被抽干,要么水位被降低。每个格子能够向相邻的格子溢水,“相邻的”是指(在同一高度水平面上的射影)有公共边。

Input

第一行是两个数m,n(1<=m,n<=1000).

以下 m 行,每行 n 个数,其绝对值表示相应格子的海拔高度;若该数为正,表示它是该市的一个区域;否则就不是。

请大家注意:所有格子的海拔高度其绝对值不超过 1000 ,且可以为零.

Output

只有一行,包含一个整数,表示至少需要放置的巨型抽水机数目。

感谢@FlashHu 提供的翻译

题目描述

Byteburg, the capital of Byteotia, is a picturesque city situated in a valley in the midst of mountains. Unfortunately, recent heavy rainfall has caused a flood - all the Byteburg is now completely under water. Byteasar, the king of Byteotia, has summoned his most enlightened advisors, including you, to a council. After long deliberations the council agreed to bring a few pumps, set them up in the flooded area and drain Byteburg.

The king has asked you to determine the minimum number of pumps sufficing to drain the city.

You are provided with a map of the city and the valley it is situated in. The map is in the shape of a m×nm\times nm×n rectangle, divided into unitary squares. For each such square the map tells its height above sea level and alsowhether it is a part of Byteburg or not. The whole area depicted in the map is under water. Furthermore, it issurrounded by much higher mountains, making the outflow of water impossible. Obviously, there is no needto drain the area that does not belong to Byteburg.

Each pump can be placed in any unitary square depicted in the map. The pump will be drawing thewater until its square is completely drained. Of course, the communicating tubes principle makes its work, so draining one square results in lowering the water level or complete draining of those squares from which the water can flow down to the one with the pump. Water can flow only between squares with a common side (or, more exact, squares whose projections onto horizontal plane have a common side, since the squares may be at different level). Apart from that, the water obviously only flows down.

Task

Write a programme that:

  • reads description of the map from the standard input,

  • determines the minimum number of pumps needed to drain whole Byteburg,

  • writes out the outcome to the standard output.

给定一张地势图,所有的点都被水淹没,现在有一些关键点,要求放最少的水泵使所有关键点的水都被抽干

输入输出格式

输入格式:

In the first line of the standard input there are two integers mmm and nnn , separated by a single space, 1≤n,m≤1 0001 \le n, m \le 1\ 0001≤n,m≤1 000 . The following mmm lines contain the description of the map. The (i+1)(i+1)(i+1) 'th line describes the iii 'th row of unitary squares in the map. It contains nnn integers xi,1,xi,2,...,xinx_{i,1}, x_{i,2}, ..., x_{i_n}xi,1​,xi,2​,...,xin​​ , separated by single spaces, −1 000≤xi,j≤1 000-1\ 000 \le x_{i,j} \le 1\ 000−1 000≤xi,j​≤1 000 , xi,j≠1000x_{i,j} \ne 1000xi,j​≠1000 . The number xi,jx_{i,j}xi,j​ describes the jjj 'th square of the iii 'th line. The ground level in this square is ∣xi,j∣|x_{i,j}|∣xi,j​∣ above sea level. If xi,j>0x_{i,j} > 0xi,j​>0 , then the square is part of Byteburg, otherwise it is outside the city. Notice, that the area of Byteburg need not be connected. In fact the city may have several separate parts.

输出格式:

Your programme should write out one integer to the standard output - the minimum number of pumpsneeded to drain Byteburg.

输入输出样例

输入样例#1:

6 9

-2 -2 -1 -1 -2 -2 -2 -12 -3

-2 1 -1 2 -8 -12 2 -12 -12

-5 3 1 1 -12 4 -6 2 -2

-5 -2 -2 2 -12 -3 4 -3 -1

-5 -6 -2 2 -12 5 6 2 -1

-4 -8 -8 -10 -12 -8 -6 -6 -4

输出样例#1:

2


一句话题意: 一个\(n*m\)的矩阵,矩阵上的值代表着该位置上的海拔高度(如果是负数则说明不再城市中),可以认为一开始水在无限高的地方,你需要在一些地方放水泵使得所有城市的位置的水位等于海拔高度.其中水可以向上下左右四个方向海拔比它低的地方流.

题解: 一开始看题目看了好久没看懂样例,后来看了题解才知道是像物理中一个连通器一样的东西.对于一个城市要使它的水位等于海拔高度,那么就至少要有个水泵在这个高度,或者更低,并且要和这个城市是连通的,也就是来他们两点的路径中没有一个位置可以阻挡这个水流.

那么该如何求出这个最小个数呢?我们考虑海拔最低的城市,显然这个高度是需要一个水泵的.

然后对于每一个位置都可以向上下左右四个方向扩展一格,那么最终统一高度的格子会形成一个连通块,那么对于这些连通块只要有一个水泵,那么这个连通块内的所有格子的水都可以被抽干.

所以我们可以想到用一个并查集来维护每个格子间的连通关系,并且通过水流的流向来不断将海拔较低的位置向海拔较高的位置更新,也就是说,海拔较低的位置有一个水泵,并且另一个海拔较高的位置与它相连通的话,海拔高的位置上的水也会被抽干.所以在维护并查集的同时再维护一下每个集合内是否含有水泵的情况就可以了.

然后因为水是从高向低流的,所以肯定要先考虑海拔较低的位置,然后才能用海拔较低的位置更新海拔高的位置.所以我们先将所有的点按照高度排序,然后按顺序按海拔从低到高维护连通关系,就可以了.

#include<bits/stdc++.h>
using namespace std;
const int N=1000+5;
const int inf=2147483647; int n, m, cnt = 0, ans = 0, vis[N][N], fa[N*N], have[N*N], hi[N][N], mv[] = {1, 0, -1, 0, 1};
// have 维护的是一些点连通的并查集内是否有水泵
// vis 维护的是某个位置所对应的节点编号(排序前)
// fa 维护并查集的连通关系
// hi 维护某个位置的高度 struct pos{
int x, y, h, c;
}a[N*N]; inline int gi(){
int ans = 0, f = 1; char i = getchar();
while(i>'9' || i<'0'){ if(i == '-') f = -1; i = getchar(); }
while(i>='0' && i<='9') ans = ans*10+i-'0', i = getchar();
return ans * f;
} inline bool cmp(pos a, pos b){
return a.h < b.h;
} inline int find(int x){
return fa[x] == x ? x : fa[x] = find(fa[x]);
} inline void comb(int x, int y){
int r1 = find(x), r2 = find(y);
if(r1 == r2) return;
fa[r2] = r1, have[r1] |= have[r2];// r1是海拔高的位置
// 所以只要海拔低的地方有抽水机, 海拔高的地方就有
} int main(){
// freopen("pow.in", "r", stdin);
// freopen("pow.out", "w", stdout);
int x, y; n = gi(), m = gi();
memset(hi, 127, sizeof(hi));
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
a[++cnt].x = i, a[cnt].y = j, a[cnt].h = gi(), vis[i][j] = cnt;
if(a[cnt].h <= 0) a[cnt].h = -a[cnt].h, a[cnt].c = 0;
else a[cnt].c = 1;
hi[i][j] = a[cnt].h;
}
}
for(int i=1;i<=cnt;i++) fa[i] = i;
sort(a+1, a+cnt+1, cmp);
for(int i=1;i<=cnt;i++){
x = a[i].x, y = a[i].y;
for(int j=0;j<4;j++){
int nx = x+mv[j], ny = y+mv[j+1];
if(a[i].h >= hi[nx][ny]) comb(vis[x][y], vis[nx][ny]);
} // 排序后用vis[x][y]是避免排序后编号发生变化,就与之前所对应的编号相连通
if(a[i].h != a[i+1].h){ // 将同一高度的一起处理
int j = i;
while(a[i].h == a[j].h){
if(a[j].c && have[find(vis[a[j].x][a[j].y])] == 0){
have[find(vis[a[j].x][a[j].y])] = 1, ans++;
}
j--;
}
}
}
cout << ans << endl;
return 0;
}

这道题因为我没有考虑排序后编号的改变导致我调了一个多小时

[洛谷3457][POI2007]POW-The Flood的更多相关文章

  1. [洛谷P3460] [POI2007]TET-Tetris Attack

    洛谷题目链接:[POI2007]TET-Tetris Attack 题目描述 A puzzle called "Tetris Attack" has lately become a ...

  2. 洛谷P3459 [POI2007]MEG-Megalopolis(树链剖分,Splay)

    洛谷题目传送门 正解是树状数组维护dfn序上的前缀和,这样的思路真是又玄学又令我惊叹( 我太弱啦,根本想不到)Orz各路Dalao 今天考了这道题,数据范围还比洛谷的小,只有\(10^5\)(害我复制 ...

  3. 洛谷P3459 [POI2007]MEG-Megalopolis [树链剖分]

    题目传送门 MEG 题目描述 Byteotia has been eventually touched by globalisation, and so has Byteasar the Postma ...

  4. 洛谷 P3462 [POI2007]ODW-Weights

    题面: https://www.luogu.org/problemnew/show/P3462 https://www.lydsy.com/JudgeOnline/problem.php?id=111 ...

  5. 洛谷P3457 [POI2007]POW-The Flood [并查集,模拟]

    题目传送门 pow 题意翻译 Description 你手头有一张该市的地图.这张地图是边长为 m∗n 的矩形,被划分为m∗n个1∗1的小正方形.对于每个小正方形,地图上已经标注了它的海拔高度以及它是 ...

  6. 洛谷 P3456 [POI2007]GRZ-Ridges and Valleys

    P3456 [POI2007]GRZ-Ridges and Valleys 题意翻译 给定一个地图,为小朋友想要旅行的区域,地图被分为n*n的网格,每个格子(i,j) 的高度w(i,j)是给定的.若两 ...

  7. 洛谷 P3455 [POI2007]ZAP-Queries (莫比乌斯函数)

    题目链接:P3455 [POI2007]ZAP-Queries 题意 给定 \(a,b,d\),求 \(\sum_{x=1}^{a} \sum_{y=1}^{b}[gcd(x, y) = d]\). ...

  8. 洛谷P3459 [POI2007]MEG-Megalopolis [2017年6月计划 树上问题02]

    [POI2007]MEG-Megalopolis 题目描述 Byteotia has been eventually touched by globalisation, and so has Byte ...

  9. 【刷题】洛谷 P3455 [POI2007]ZAP-Queries

    题目描述 Byteasar the Cryptographer works on breaking the code of BSA (Byteotian Security Agency). He ha ...

随机推荐

  1. 欢迎来怼-Alpha周(2017年10月19)贡献分配规则和分配结果

    .从alpha周(2017年10月19日开始的2周)开始,提高贡献分比重. 贡献分 : 团队分 = 1 : 5 教师会在核算每位同学总分时按比例乘以系数. 每位同学带入团队贡献分10分,如果团队一共7 ...

  2. onethink框架显示Access denied for user 'root'@'localhost' (using password: NO)

    本地开发的时候使用的用户名是root,密码为空,它会生成两份.一份在Common/config.php里面,还有一份在Application\User\Conf/config.php 在linux环境 ...

  3. Qt代码覆盖率code coverage(VS版)

    版权声明:若无来源注明,Techie亮博客文章均为原创. 转载请以链接形式标明本文标题和地址: 本文标题:Qt代码覆盖率code coverage(VS版)     本文地址:http://techi ...

  4. 【Redis】- 总结精讲

    本文围绕以下几点进行阐述 1.为什么使用redis2.使用redis有什么缺点3.单线程的redis为什么这么快4.redis的数据类型,以及每种数据类型的使用场景5.redis的过期策略以及内存淘汰 ...

  5. 2019 front end jobs collection

    2019 front end jobs collection Alibaba https://ant.design/docs/spec/work-with-us-cn https://www.yuqu ...

  6. HSF原理

    HSF(High-speed Service Framework),高速服务框架,是阿里系主要采用的服务框架,其目的是作为桥梁联通不同的业务系统,解耦系统之间的实现依赖.其高速体现在底层的非阻塞I/O ...

  7. query 获取本身的HTML

    <div class="test"><p>hello,你好!</p></div> <script> $(".t ...

  8. BZOJ 1486 最小圈(01分数规划)

    好像是很normal的01分数规划题.最小比率生成环. u(c)=sigma(E)/k.转化一下就是k*u(c)=sigma(E). sigma(E-u(c))=0. 所以答案对于这个式子是有单调性的 ...

  9. 【hdu4507】吉哥系列故事——恨7不成妻 数位dp

    题目描述 求 $[L,R]$ 内满足:数位中不包含7.数位之和不是7的倍数.本身不是7的倍数 的所有数的平方和 mod $10^9+7$ . 输入 输入数据的第一行是case数T(1 <= T ...

  10. POJ1816:Wild Words——题解

    http://poj.org/problem?id=1816 比较麻烦的trie. 首先你需要选择针对n还是m建立trie,这里我选择了针对n. 那么就需要面临卡空间的问题. 这里提供了一种链式前向星 ...