码迷,mamicode.com
首页 > 其他好文 > 详细

[USACO09JAN]全流Total Flow

时间:2017-03-20 22:19:44      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:his   cti   case   max   dba   小流量   not   wan   https   

题目描述

Farmer John always wants his cows to have enough water and thus has made a map of the N (1 <= N <= 700) water pipes on the farm that connect the well to the barn. He was surprised to find a wild mess of different size pipes connected in an apparently haphazard way. He wants to calculate the flow through the pipes.

Two pipes connected in a row allow water flow that is the minimum of the values of the two pipe‘s flow values. The example of a pipe with flow capacity 5 connecting to a pipe of flow capacity 3 can be reduced logically to a single pipe of flow capacity 3:

+---5---+---3---+ -> +---3---+

Similarly, pipes in parallel let through water that is the sum of their flow capacities:

+---5---+

---+ +--- -> +---8---+

+---3---+

Finally, a pipe that connects to nothing else can be removed; it contributes no flow to the final overall capacity:

+---5---+

---+ -> +---3---+

+---3---+--

All the pipes in the many mazes of plumbing can be reduced using these ideas into a single total flow capacity.

Given a map of the pipes, determine the flow capacity between the well (A) and the barn (Z).

Consider this example where node names are labeled with letters:

+-----------6-----------+

A+---3---+B +Z

+---3---+---5---+---4---+

C D

Pipe BC and CD can be combined:

+-----------6-----------+

A+---3---+B +Z

+-----3-----+-----4-----+

D Then BD and DZ can be combined:

+-----------6-----------+

A+---3---+B +Z

+-----------3-----------+

Then two legs of BZ can be combined:

B A+---3---+---9---+Z

Then AB and BZ can be combined to yield a net capacity of 3:

A+---3---+Z

Write a program to read in a set of pipes described as two endpoints and then calculate the net flow capacity from ‘A‘ to ‘Z‘. All

networks in the test data can be reduced using the rules here.

Pipe i connects two different nodes a_i and b_i (a_i in range

‘A-Za-z‘; b_i in range ‘A-Za-z‘) and has flow F_i (1 <= F_i <= 1,000). Note that lower- and upper-case node names are intended to be treated as different.

The system will provide extra test case feedback for your first 50 submissions.

约翰总希望他的奶牛有足够的水喝,因此他找来了农场的水管地图,想算算牛棚得到的水的 总流量.农场里一共有N根水管.约翰发现水管网络混乱不堪,他试图对其进行简 化.他简化的方式是这样的:

两根水管串联,则可以用较小流量的那根水管代替总流量.

两根水管并联,则可以用流量为两根水管流量和的一根水管代替它们

当然,如果存在一根水管一端什么也没有连接,可以将它移除.

请写个程序算出从水井A到牛棚Z的总流量.数据保证所有输入的水管网络都可以用上述方法 简化.

输入输出格式

输入格式:

 

  • Line 1: A single integer: N

  • Lines 2..N + 1: Line i+1 describes pipe i with two letters and an integer, all space-separated: a_i, b_i, and F_i

 

输出格式:

 

  • Line 1: A single integer that the maximum flow from the well (‘A‘) to the barn (‘Z‘)

 

输入输出样例

输入样例#1:
5 
A B 3 
B C 3 
C D 5 
D Z 4 
B Z 6 
输出样例#1:
3 
思路:最大流
代码实现:
 1 #include<cstdio>
 2 #include<cstring>
 3 #define inf 100000000
 4 int n,s,t,tw;
 5 int a,b,c;
 6 char ch[3],cn[3];
 7 int h[300],hs=1;
 8 struct edge{int s,n,w;}e[60000];
 9 int d[300],q[300],head,tail;
10 inline int min(int x,int y){return x<y?x:y;}
11 void bfs(){
12     memset(d,0,sizeof(d));
13     head=tail=0;
14     d[s]=1,q[head++]=s;
15     while(head>tail){
16         a=q[tail++];
17         for(int i=h[a];i;i=e[i].n)
18         if(!d[e[i].s]&&e[i].w){
19             d[e[i].s]=d[a]+1;
20             if(e[i].s==t) return;
21             q[head++]=e[i].s;
22         }
23     }
24 }
25 int ap(int k,int w){
26     if(k==t) return w;
27     int uw=w;
28     for(int i=h[k];i&&uw;i=e[i].n)
29     if(e[i].w&&d[e[i].s]==d[k]+1){
30         int wt=ap(e[i].s,min(uw,e[i].w));
31         if(wt) e[i].w-=wt,e[i^1].w+=wt,uw-=wt;
32         else d[e[i].s]=0;
33     }
34     return w-uw;
35 }
36 bool Dinic(){
37     bfs();
38     if(!d[t]) return 0;
39     tw+=ap(s,inf);
40     return 1;
41 }
42 int main(){
43     scanf("%d",&n);
44     s=A,t=Z;
45     while(n--){
46         scanf("%s%s%d",ch,cn,&c);
47         a=ch[0],b=cn[0];
48         e[++hs]=(edge){b,h[a],c},h[a]=hs;
49         e[++hs]=(edge){a,h[b],c},h[b]=hs;
50     }
51     while(Dinic());
52     printf("%d\n",tw);
53     return 0;
54 }

我终于能顺手的,顺手A了,网络流真心好实现。

题目来源:洛谷

[USACO09JAN]全流Total Flow

标签:his   cti   case   max   dba   小流量   not   wan   https   

原文地址:http://www.cnblogs.com/J-william/p/6591804.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!