app开发者平台在数字化时代的重要性与发展趋势解析
656
2022-10-03
POJ 1459 Power Network (最大流)
Description
Input
There are several data sets in the input. Each data set encodes a power network. It starts with four integers: 0 <= n <= 100 (nodes), 0 <= np <= n (power stations), 0 <= nc <= n (consumers), and 0 <= m <= n^2 (power transport lines). Follow m data triplets (u,v)z, where u and v are node identifiers (starting from 0) and 0 <= z <= 1000 is the value of lmax(u,v). Follow np doublets (u)z, where u is the identifier of a power station and 0 <= z <= 10000 is the value of pmax(u). The data set ends with nc doublets (u)z, where u is the identifier of a consumer and 0 <= z <= 10000 is the value of cmax(u). All input numbers are integers. Except the (u,v)z triplets and the (u)z doublets, which do not contain white spaces, white spaces can occur freely in input. Input data terminate with an end of file and are correct.
Output
For each data set from the input, the program prints on the standard output the maximum amount of power that can be consumed in the corresponding network. Each result has an integral value and is printed from the beginning of a separate line.
Sample Input
2 1 1 2 (0,1)20 (1,0)10 (0)15 (1)207 2 3 13 (0,0)1 (0,1)2 (0,2)5 (1,0)1 (1,2)8 (2,3)1 (2,4)7 (3,5)2 (3,6)5 (4,2)7 (4,3)5 (4,5)1 (6,0)5 (0)5 (1)2 (3)2 (4)1 (5)4
Sample Output
156
Hint
The sample input contains two data sets. The first data set encodes a network with 2 nodes, power station 0 with pmax(0)=15 and consumer 1 with cmax(1)=20, and 2 power transport lines with lmax(0,1)=20 and lmax(1,0)=10. The maximum value of Con is 15. The second data set encodes the network from figure 1.
题意
这道题题目好长,好难懂哎!看了好久的题目。
先附上翻译(网上找的)
题目描述
一个电网包含一些结点(电站、消费者、调度站),这些结点通过电线连接。每个结点 u 可能被供给 s(u) 的电能, s(u)≥0 ,同时也可能产生 p(u) 的电能, 0≤p(u)≤pmax(u) ,站点 u 还有可能 消费 c(u) 电能, 0≤c(u)≤min(s(u),cmax(u)) ,可能传输 d(u) 的电能, d(u)=s(u)+p(u)−c(u)
以上这些量存在以下限制关系:
对每个电站, c(u)=0 。对每个消费者, p(u)=0 。对每个调度站, p(u)=c(u)=0
在电网中两个结点 u 和 v 之间最多有一条电线连接。从结点 u 到结点 v 传输 L(u,v) 的电能, 0≤L(u,v)≤Lmax(u,v) 。定义 Con 为 c(u) 的总和,表示电网中消费电能的总和。本题的目的是求 Con
在图(a)中,电站结点 u 的标记” x/y ”代表 p(u)=x 、 pmax(u)=y 。消费者结点 u 的标记” x/y ”代表 c(u)=x 、 cmax(u)=y 。每条电线所对应的边 (u,v) ,其标记” x/y ” 代表 L(u,v)=x 、 Lmax(u,v)=y
在图(b)中,消费的最大电能 Con=6 ,图(a)列出了在此状态下各 个站点的 s(u) 、 p(u) 、 c(u) 和 d(u)
输入描述
输入文件中包含多个测试数据,每个测试数据描述了一个电网。每个测试数据的第1 行为4 个整数: n,np,nc,m ,其中, 0≤n≤100 ,代表结点数目; 0≤np≤n ,代表电站数目; 0≤nc≤n , 代表消费者数目; 0≤m≤n2 ,代表传输电线的数目。接下来有 m 个三元组, (u,v)z ,其中 u 和 v 为结点序号(结点序号从0开始计起), 0≤z≤1000 ,代表 Lmax(u,v) 的值。接下来有 np 个二元 组, (u)z ,其中 u 为电站结点的序号, 0≤z≤10000 ,代表 pmax(u) 的值;每个测试数据的最后是 nc 个二元组, (u)z ,其中 u 为消费者结点的序号, 0≤z≤10000 ,代表 cmax(u) 的值。所有数据都是整数。除三元组 (u,v)z 和二元组 (u)z
思路
建立一个超级源点,发电站所提供的电量可以看做是从超级源点与发电站之间边的容量,同样建立一个超级汇点,消费者所消耗的电量可以看做是从它与超级汇点之间边的容量,对于三元组,u到v可以传输的电量便可以看做u到v之间一条容量为z的边。
最后求从超级源点到超级汇点之间的最大流即可。
AC 代码
#include
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~