P3376 【模板】网络最大流——————Q - Marriage Match IV(最短路&最大流)
第一道题是模板题,下面主要是两种模板,但都用的是Dinic算法(第二个题也是)
第一题:
题意就不需要讲了,直接上代码:
vector代码:
1 //invalid types 'int[int]' for array subscript :字母重复定义
2 #include<stdio.h>
3 #include<string.h>
4 #include<iostream>
5 #include<stdlib.h>
6 #include<algorithm>
7 #include<queue>
8 #include<vector>
9 using namespace std;
10 const int N=10050;
11 const int M=100050;
12 const int INF=0x3f3f3f3f;
13 int n,m,a,b,dep[N];
14 struct shudui
15 {
16 int start,value;
17 }str1;
18 vector<shudui>w[N];
19 queue<int>r;
20 bool bfs() //对每个点进行分层
21 {
22 for(int i=1;i<=n;++i) dep[i]=0;
23 while(!r.empty())
24 {
25 r.pop();
26 }
27 r.push(a);
28 dep[a]=1; //从起点开始增广
29 while(!r.empty())
30 {
31 int now=r.front();
32 r.pop();
33 int len=w[now].size();
34 for(int i=0;i<len;++i)
35 {
36 str1=w[now][i];
37 if(str1.value && !dep[str1.start])
38 {
39 dep[str1.start]=dep[now]+1;
40 r.push(str1.start);
41 }
42 }
43 }
44 return dep[b];
45 }
46 int dfs(int now,int aim,int flow)
47 {
48 if(now==aim || (!flow)) return flow;
49 int res=0;
50 int len=w[now].size();
51 for(int i=0;i<len;++i)
52 {
53 str1=w[now][i];
54 if(str1.value && dep[str1.start]==dep[now]+1)
55 {
56 int kk=dfs(str1.start,aim,min(flow,str1.value));
57 res+=kk;
58 flow-=kk;
59 w[now][i].value-=kk; //我突然方法你把vector中的值赋给str1的时候,你对石头人
60 //但是vector中的值仍然没有变
61 int len1=w[str1.start].size();
62 for(int j=0;j<len1;++j)
63 {
64 if(w[str1.start][j].start==now)
65 {
66 w[str1.start][j].value+=kk;
67 break;
68 }
69 }
70 }
71 }
72 return res;
73 }
74 int Dinic()
75 {
76 int ans=0;
77 while(bfs())
78 {
79 //printf("**\n");
80 ans+=dfs(a,b,INF);
81 }
82 return ans;
83 }
84 int main()
85 {
86 scanf("%d%d%d%d",&n,&m,&a,&b);
87 while(m--)
88 {
89 int u,v,ww;
90 scanf("%d%d%d",&u,&v,&ww);
91 str1.start=v;
92 str1.value=ww;
93 w[u].push_back(str1);
94 str1.start=u;
95 str1.value=0; //它的方向边初始化为0
96 w[v].push_back(str1);
97 }
98 //printf("**\n");
99 printf("%d\n",Dinic());
100 return 0;
101 }
链接表:
1 #include<stdio.h>
2 #include<string.h>
3 #include<queue>
4 #include<vector>
5 #include<algorithm>
6 #include<iostream>
7 #define N 10050
8 #define M 100050
9 using namespace std;
10 const int INF=0x3f3f3f3f;
11 int n,m,a,b,fir[N],dep[N],cnt=1; //dep是用来存每个点的深度
12 queue<int>r;
13 struct edge
14 {
15 int next,to,val,flag;
16 }q[M<<1],str1; //要记得这里M<<1,我RE了好几次T_T
17 void add_edge(int u,int v,int w) //存边(正、反)
18 {
19 q[cnt].next=fir[u];
20
21 q[cnt].to=v;
22 q[cnt].val=w;
23 q[cnt].flag=cnt+1;
24 fir[u]=cnt++;
25 q[cnt].next=fir[v];
26
27 q[cnt].to=u;
28 q[cnt].val=0; //反向边的值应该设为0
29 q[cnt].flag=cnt-1; //这个flag的作用就是用来快速查找他的反向边
30 //我的上一个代码用vector来查找某个元素的时候太浪费时间了
31 fir[v]=cnt++;
32 }
33 int bfs() //每次先bfs查看有没有增广路
34 {
35 for(int i=1;i<=n;++i) dep[i]=0;
36 while(!r.empty()) r.pop();
37 r.push(a);
38 dep[a]=1;
39 while(!r.empty())
40 {
41 int now=r.front();
42 r.pop();
43 for(int i=fir[now];i;i=q[i].next)
44 {
45 int v=q[i].to;
46 if(q[i].val && !dep[v])
47 {
48 dep[v]=dep[now]+1;
49 r.push(v);
50 }
51 }
52 }
53 return dep[b];
54 }
55 int dfs(int now,int aim,int flow) //用来查找容量
56 {
57 if(now==aim || !flow)
58 {
59 return flow;
60 }
61 int res=0;
62 for(int i=fir[now];i;i=q[i].next)
63 {
64 int v=q[i].to;
65 if(q[i].val && dep[v]==dep[now]+1) //当容量不为0,而且这一个点是他的下一个深度
66 {
67 int kk=dfs(v,aim,min(flow,q[i].val)); //dfs找是否能到终点
68 res+=kk; //最大流增加
69 flow-=kk; //可用流量减少
70 q[i].val-=kk; //正向边减少流量,反向边增加
71 q[q[i].flag].val+=kk;
72 }
73 }
74 return res;
75 }
76 int Dinic()
77 {
78 int ans=0;
79 while(bfs()) //只要有增广路就能增量
80 {
81 //printf("**\n");
82 ans+=dfs(a,b,INF);
83 }
84 return ans;
85 }
86 int main()
87 {
88 memset(fir,0,sizeof(fir));
89 scanf("%d%d%d%d",&n,&m,&a,&b);
90 while(m--)
91 {
92 int u,v,w;
93 scanf("%d%d%d",&u,&v,&w);
94 add_edge(u,v,w);
95 }
96 printf("%d\n",Dinic());
97 return 0;
98 }
Like that show, now starvae also take part in a show, but it take place between city A and B. Starvae is in city A and girls are in city B. Every time starvae can get to city B and make a data with a girl he likes. But there are two problems with it, one is starvae must get to B within least time, it's said that he must take a shortest path. Other is no road can be taken more than once. While the city starvae passed away can been taken more than once.
So, under a good RP, starvae may have many chances to get to city B. But he don't know how many chances at most he can make a data with the girl he likes . Could you help starvae?
InputThe first line is an integer T indicating the case number.(1<=T<=65)
For each case,there are two integer n and m in the first line ( 2<=n<=1000, 0<=m<=100000 ) ,n is the number of the city and m is the number of the roads.
Then follows m line ,each line have three integers a,b,c,(1<=a,b<=n,0<c<=1000)it means there is a road from a to b and it's distance is c, while there may have no road from b to a. There may have a road from a to a,but you can ignore it. If there are two roads from a to b, they are different.
At last is a line with two integer A and B(1<=A,B<=N,A!=B), means the number of city A and city B.
There may be some blank line between each case.OutputOutput a line with a integer, means the chances starvae can get at most.Sample Input
3
7 8
1 2 1
1 3 1
2 4 1
3 4 1
4 5 1
4 6 1
5 7 1
6 7 1
1 7 6 7
1 2 1
2 3 1
1 3 3
3 4 1
3 5 1
4 6 1
5 6 1
1 6 2 2
1 2 1
1 2 2
1 2
Sample Output
2
1
1
网易翻译不用看来,看也看不懂,这道题就是让你去求出来从起点到终点能有几条最短路,那么这道题就采用 最短路&&最大流
最短路:求有几条最短路,那肯定要先用最短路算法求出来最短长度
最大流:最大流是求从起点到终点最大流度,这样我们只需要把每个边得权值设为1,这样一旦一个边走过,那按照最大流这个边就不可以走,就可以把这道题转化为最短路
在确定最短路中的都是那几条边才到的终点,我们可以d[起点]+边长==d[终点] 来判断,只要满足这个就说明最起码这一点是最短的,因为最短路求出来的每一段都是最短的
最大流:https://blog.csdn.net/stevensonson/article/details/79177530
下面上代码:
1 #include<stdio.h>
2 #include<string.h>
3 #include<queue>
4 #include<vector>
5 #include<algorithm>
6 #include<iostream>
7 #define N 1050
8 #define M 100050
9 using namespace std;
10 const int INF=0x3f3f3f3f;
11 int n,m,a,b,fir[N],dep[N],cnt,dis[N],d[N];
12 queue<int>r;
13 struct edge
14 {
15 int next,to,val,flag;
16 } q[M<<1],str1;
17 struct shudui1
18 {
19 int start,value;
20 bool operator <(const shudui1 q)const
21 {
22 return value>q.value;
23 }
24 } str11;
25 struct shudui2
26 {
27 int start,value;
28 } str2;
29 vector<shudui2>w[1005];
30 priority_queue<shudui1>t;
31 int bfs() //每次先bfs查看有没有增广路
32 {
33 for(int i=1;i<=n;++i) dep[i]=0;
34 while(!r.empty()) r.pop();
35 r.push(a);
36 dep[a]=1;
37 while(!r.empty())
38 {
39 int now=r.front();
40 r.pop();
41 for(int i=fir[now];i;i=q[i].next)
42 {
43 int v=q[i].to;
44 if(q[i].val && !dep[v])
45 {
46 dep[v]=dep[now]+1;
47 r.push(v);
48 }
49 }
50 }
51 return dep[b];
52 }
53 int dfs(int now,int aim,int flow) //用来查找容量
54 {
55 if(now==aim || !flow)
56 {
57 return flow;
58 }
59 int res=0;
60 for(int i=fir[now];i;i=q[i].next)
61 {
62 int v=q[i].to;
63 if(q[i].val && dep[v]==dep[now]+1) //当容量不为0,而且这一个点是他的下一个深度
64 {
65 int kk=dfs(v,aim,min(flow,q[i].val)); //dfs找是否能到终点
66 res+=kk; //最大流增加
67 flow-=kk; //可用流量减少
68 q[i].val-=kk; //正向边减少流量,反向边增加
69 q[q[i].flag].val+=kk;
70 }
71 }
72 return res;
73 }
74 int Dinic()
75 {
76 int ans=0;
77 while(bfs()) //只要有增广路就能增量
78 {
79 //printf("**\n");
80 ans+=dfs(a,b,INF);
81 }
82 return ans;
83 }
84 void add_edge(int u,int v,int w)
85 {
86 q[cnt].next=fir[u];
87
88 q[cnt].to=v;
89 q[cnt].val=w;
90 q[cnt].flag=cnt+1;
91 fir[u]=cnt++;
92 q[cnt].next=fir[v];
93
94 q[cnt].to=u;
95 q[cnt].val=0;
96 q[cnt].flag=cnt-1;
97 fir[v]=cnt++;
98 }
99 int main()
100 {
101 int tt;
102 scanf("%d",&tt);
103 while(tt--)
104 {
105 cnt=1;
106 memset(fir,0,sizeof(fir));
107 scanf("%d%d",&n,&m);
108 for(int i=1; i<=n; ++i)
109 w[i].clear();
110 while(m--)
111 {
112 int u,v,ww;
113 scanf("%d%d%d",&u,&v,&ww);
114 str2.start=v;
115 str2.value=ww;
116 w[u].push_back(str2);
117 }
118 scanf("%d%d",&a,&b);
119 memset(d,INF,sizeof(d));
120 memset(dis,0,sizeof(dis));
121 str11.start=a;
122 str11.value=0;
123 t.push(str11);
124 d[str11.start]=0;
125 while(!t.empty())
126 {
127 str11=t.top();
128 t.pop();
129 int x=str11.start;
130 if(dis[x]) continue;
131 dis[x]=1;
132 int len=w[x].size();
133 for(int i=0; i<len; ++i)
134 {
135 str2=w[x][i];
136 if(d[str2.start]>d[x]+str2.value)
137 {
138 str11.value=d[str2.start]=d[x]+str2.value;
139 str11.start=str2.start;
140 t.push(str11);
141 }
142 }
143 }
144 // for(int i=1; i<=n; ++i)
145 // printf("%d ",d[i]);
146 // printf("\n");
147 for(int i=1; i<=n; ++i)
148 {
149 int len=w[i].size();
150 for(int j=0; j<len; ++j)
151 {
152 str2=w[i][j];
153 if(d[i]+str2.value==d[str2.start])
154 {
155 //printf("%d%d***\n",i,str2.start);
156 add_edge(i,str2.start,1);
157 }
158 }
159 }
160 printf("%d\n",Dinic());
161 }
162 return 0;
163 }
P3376 【模板】网络最大流——————Q - Marriage Match IV(最短路&最大流)的更多相关文章
- HDU-3416 Marriage Match IV 最短路+最大流 找各最短路的所有边
题目链接:https://cn.vjudge.net/problem/HDU-3416 题意 给一个图,求AB间最短路的条数(每一条最短路没有重边.可有重复节点) 思路 首先把全部最短路的边找出来,再 ...
- hdu3416 Marriage Match IV 最短路+ 最大流
此题的大意:给定一幅有向图,求起点到终点(都是固定的)的不同的最短路有多少条.不同的最短路是说不能有相同的边,顶点可以重复.并且图含有平行边. 看了题以后,就想到暴力,但是暴力往往是不可取的.(暴力的 ...
- Q - Marriage Match IV (非重复最短路 + Spfa + 网络最大流Isap)
Q - Marriage Match IV Do not sincere non-interference. Like that show, now starvae also take part in ...
- Marriage Match IV(最短路+网络流)
Marriage Match IV http://acm.hdu.edu.cn/showproblem.php?pid=3416 Time Limit: 2000/1000 MS (Java/Othe ...
- HDU 3416 Marriage Match IV (Dijkstra+最大流)
题意:N个点M条边的有向图,给定起点S和终点T,求每条边都不重复的S-->T的最短路有多少条. 分析:首先第一步需要找出所有可能最短路上的边.怎么高效地求出呢?可以这样:先对起点S,跑出最短路: ...
- HDU 3416 Marriage Match IV (最短路建图+最大流)
(点击此处查看原题) 题目分析 题意:给出一个有n个结点,m条单向边的有向图,问从源点s到汇点t的不重合的最短路有多少条,所谓不重复,意思是任意两条最短路径都不共用一条边,而且任意两点之间的边只会用一 ...
- HDU 3416 Marriage Match IV (最短路径&&最大流)
/*题意: 有 n 个城市,知道了起点和终点,有 m 条有向边,问从起点到终点的最短路一共有多少条.这是一个有向图,建边的时候要注意!!解题思路:这题的关键就是找到哪些边可以构成最短路,其实之前做最短 ...
- hdu3461Marriage Match IV 最短路+最大流
//给一个图.给定起点和终点,仅仅能走图上的最短路 //问最多有多少种走的方法.每条路仅仅能走一次 //仅仅要将在最短路上的全部边的权值改为1.求一个最大流即可 #include<cstdio& ...
- HDU3416 Marriage Match IV —— 最短路径 + 最大流
题目链接:https://vjudge.net/problem/HDU-3416 Marriage Match IV Time Limit: 2000/1000 MS (Java/Others) ...
随机推荐
- Fail2ban工具使用
Fail2ban fail2ban扫描日志文件并且可以识别禁用某些多次尝试登录的IP,通过更新系统的防火墙规则来实现拒绝该IP连接,也可以配置禁用的时间.fail2ban提供了一些常用软件默认的日 ...
- 不要把file,process或者super权限授予管理员以外的账号
file权限的主要作用是通过select ....into outfile 写到服务器上具有写权限的目录下,作为文本格式存放,具有权限的目录也就是启动mysql时的用户权限目录.(没有理解) 可以将有 ...
- 【RAC】双节点RAC搭建
本文主要是双节点的RAC进行搭建,根据黄伟老师的视频进行总结和使用. 搭建环境: 1.两台安装好Linux_x64系统的服务器 2.IP设置 注意:Priv-IP的IP是自己一个网段,而剩下的SCAN ...
- 惠普电脑(HP PHILIPS系列)安装ubuntu后无法连接WIFI解决方案(手动安装8821CE驱动)
一步一步来, 先说环境: 我的电脑是HP PHILIPS系列,ubuntu版本是16.04 背景: win10安装ubuntu后发现无法连接wifi(但win10系统可以连接WIFI),在ubuntu ...
- Sqli - Labs 靶场笔记(一)
Less - 1: 页面: URL: http://127.0.0.1/sqli-labs-master/Less-1/ 测试: 1.回显正常,说明不是数字型注入, http://127.0.0.1/ ...
- SAP 修改表和表中数据
平时修改表中数据的方式有一下几种: 1.一般就是通过SE11或者是SE16进去,找到那条记录,然后将模式变成EDIT,然后修改保存. 2.通过SQL语句在程序中实现数据库表的修改操作 3.通过SE16 ...
- JWT令牌简介及demo
一.访问令牌的类型 二.JWT令牌 1.什么是JWT令牌 JWT是JSON Web Token的缩写,即JSON Web令牌,是一种自包含令牌. JWT的使用场景: 一种情况是webapi,类似之 ...
- JS实现计算器,带三角函数,根号
极简主义网页计算器. 实现了按键特效,可响应键盘按键,实时显示计算结果. 可切换模式,拓展高级功能,包括根号.三角函数.括号等. 效果如下: 代码如下: html: <!DOCTYPE html ...
- JVM(二)类加载的时机及其过程
类从被加载到虚拟机内存中开始,到卸载出内存为止,它的的整个生命周期包括: 加载(Loading),验证(Verification),准备(Preparation),解析(Resolution),初始化 ...
- 一文说通Dotnet的委托
简单的概念,也需要经常看看. 一.前言 先简单说说Delegate的由来.最早在C/C++中,有一个概念叫函数指针.其实就是一个内存指针,指向一个函数.调用函数时,只要调用函数指针就可以了,至于函 ...