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

cogs 11 运输问题1

时间:2017-07-30 22:02:23      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:mat   商品   问题   连接   ext   城市   blog   char   struct   

11. 运输问题1

★★☆   输入文件:maxflowa.in   输出文件:maxflowa.out   简单对比
时间限制:1 s   内存限制:128 MB

【问题描述】
    一个工厂每天生产若干商品,需运输到销售部门进行销售。从产地到销地要经过某些城镇,有不同的路线可以行走,每条两城镇间的公路都有一定的流量限制。请你计算,在不考虑其它车辆使用公路的前提下,如何充分利用所有的公路,使产地运输到销地的商品最多,最多能运输多少商品。
【输入格式】
输入文件有若干行
第一行,一个整数n,表示共有n个城市(2<=n<=100),产地是1号城市,销地是n号城市。
下面有n行,每行有n个数字。第p行第q列的数字表示城镇p与城镇q之间有无公路连接。数字为0表示无,大于0表示有公路,且该数字表示该公路流量。
【输出格式】
输出文件有一行
第一行,1个整数max,表示最大流量为max。
【输入输出样例】
输入文件名: maxflowa.in
6
0 4 8 0 0 0
0 0 4 4 1 0
0 0 0 2 2 0
0 0 0 0 0 7
0 0 0 6 0 9
0 0 0 0 0 0
输出文件名:maxflowa.out
8
这个题真的没有什么思维含量,建图,直接跑最大流即可
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 using namespace std;
 5 #define min(a,b) ((a)<(b)?(a):(b))
 6 #define qq 1e9
 7 int read() {
 8     int s=0,f=1;
 9     char ch=getchar();
10     while(ch>9||ch<0) {
11         if(ch==-) {
12             f=-1;
13         }
14         ch=getchar();
15     }
16     while(ch>=0&&ch<=9) {
17         s=(s<<1)+(s<<3)+(ch^48);
18         ch=getchar();
19     }
20     return s*f;
21 }
22 int n,r[105],tot,deep[105];
23 int head,tail,queue[105];
24 struct oo {
25     int to,vv,next;
26 } c[10005];
27 void add(int x,int y,int z) {
28     c[tot].to=y;
29     c[tot].next=r[x];
30     c[tot].vv=z;
31     r[x]=tot++;
32 }
33 bool bfs(int s,int t) {
34     memset(deep,0,sizeof(deep));
35     head=tail=0;
36     queue[++tail]=s;
37     deep[s]=1;
38     while(head<tail) {
39         int opt=queue[++head];
40         for(int i=r[opt]; ~i; i=c[i].next) {
41             if(c[i].vv&&!deep[c[i].to]) {
42                 deep[c[i].to]=deep[opt]+1;
43                 queue[++tail]=c[i].to;
44                 if(c[i].to==t) {
45                     return 1;
46                 }
47             }
48         }
49     }
50     return 0;
51 }
52 int dfs(int opt,int fw) {
53     if(opt==n) {
54         return fw;
55     }
56     int tmp=fw,k;
57     for(int i=r[opt]; ~i; i=c[i].next) {
58         if(c[i].vv&&tmp&&deep[c[i].to]==deep[opt]+1) {
59             k=dfs(c[i].to,min(c[i].vv,tmp));
60             if(!k) {
61                 deep[c[i].to]=0;
62                 continue;
63             }
64             c[i].vv-=k;
65             c[i^1].vv+=k;
66             tmp-=k;
67         }
68     }
69     return fw-tmp;
70 }
71 int dicnic(int s,int t){
72     int ans=0;
73     while(bfs(s,t)){
74         ans+=dfs(s,qq);
75     }
76     return ans;
77 }
78 int Main(){
79     freopen("maxflowa.in","r",stdin);
80     freopen("maxflowa.out","w",stdout);
81     n=read();
82     memset(r,-1,sizeof(r));
83     for(int i=1; i<=n; i++) {
84         for(int j=1; j<=n; j++) {
85             int x=read();
86             if(x) {
87                 add(i,j,x);
88                 add(j,i,0);
89             }
90         }
91     }
92     int ans=dicnic(1,n);
93     printf("%d\n",ans);
94     return 0;
95 }
96 int hehe=Main();
97 int main() {
98     ;
99 }

 

cogs 11 运输问题1

标签:mat   商品   问题   连接   ext   城市   blog   char   struct   

原文地址:http://www.cnblogs.com/forevergoodboy/p/7260504.html

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