HDU 4280 Island Transport(网络流,最大流)
HDU 4280 Island Transport(网络流,最大流)
Description
In the vast waters far far away, there are many islands. People are living on the islands, and all the transport among the islands relies on the ships.
You have a transportation company there. Some routes are opened for passengers. Each route is a straight line connecting two different islands, and it is bidirectional. Within an hour, a route can transport a certain number of passengers in one direction. For safety, no two routes are cross or overlap and no routes will pass an island except the departing island and the arriving island. Each island can be treated as a point on the XY plane coordinate system. X coordinate increase from west to east, and Y coordinate increase from south to north.
The transport capacity is important to you. Suppose many passengers depart from the westernmost island and would like to arrive at the easternmost island, the maximum number of passengers arrive at the latter within every hour is the transport capacity. Please calculate it.
Input
The first line contains one integer T (1<=T<=20), the number of test cases.
Then T test cases follow. The first line of each test case contains two integers N and M (2<=N,M<=100000), the number of islands and the number of routes. Islands are number from 1 to N.
Then N lines follow. Each line contain two integers, the X and Y coordinate of an island. The K-th line in the N lines describes the island K. The absolute values of all the coordinates are no more than 100000.
Then M lines follow. Each line contains three integers I1, I2 (1<=I1,I2<=N) and C (1<=C<=10000) . It means there is a route connecting island I1 and island I2, and it can transport C passengers in one direction within an hour.
It is guaranteed that the routes obey the rules described above. There is only one island is westernmost and only one island is easternmost. No two islands would have the same coordinates. Each island can go to any other island by the routes.
Output
For each test case, output an integer in one line, the transport capacity.
Sample Input
2
5 7
3 3
3 0
3 1
0 0
4 5
1 3 3
2 3 4
2 4 3
1 5 6
4 5 3
1 4 4
3 4 2
6 7
-1 -1
0 1
0 2
1 0
1 1
2 3
1 2 1
2 3 6
4 5 5
5 6 3
1 4 6
2 5 5
3 6 4
Sample Output
9
6
Http
HDU:https://vjudge.net/problem/HDU-4280
Source
网络流,最大流
题目大意
在n个岛屿中,有m条双向航线,航线有单位时间内的运输上限,现在求从最左侧到最右侧的最大运输量
解决思路
这道题很明显是最大流,但数据范围有点大,似乎是专门卡Dinic算法的,可以当做是一道联系Dinic卡时的好题。反正能减的就减。
如果不知道Dinic最大流算法,可以到我的这篇文章查看
代码
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
using namespace std;
//像这种卡时的题目尽量不要用STL
#define min(x,y) x>y? y : x
#define RG register
const int maxN=200031;//数组一定要开够
const int maxM=500031;
const int inf=2147483647;
struct Edge
{
	int v,flow;
};
int n,m;
int S,T;
int cnt=-1;
int Head[maxN];
int Next[maxM];
Edge E[maxM];
int cur[maxN];
int depth[maxN];
int Queue[maxN];
inline void Add_Edge(int u,int v,int flow);
int dfs(int u,int flow);
inline int read();
int main()
{
	int Case;
	Case=read();
	while (Case--)//多组数据
	{
		memset(Head,-1,sizeof(Head));//注意这里去掉了对Next的初始化,因为我们在Add_Edge函数中已经考虑到了,不需要初始化
		cnt=-1;
		n=read();
		m=read();
		int minx=inf,maxx=-inf;
		for (int i=1;i<=n;i++)
		{
			int x=read(),y=read();
			if (x<minx)
			{
				minx=x;
				S=i;
			}
			if (x>maxx)
			{
				maxx=x;
				T=i;
			}
		}
		for (int i=1;i<=m;i++)
		{
			int u=read(),v=read(),flow=read();
			Add_Edge(u,v,flow);//注意,因为是双向边,我们不要像原来那样建流量为0的反边(那样就有4条边了),只要建两条流量均为flow的边
		}
		int Ans=0;
		while (1)
		{
			memset(depth,-1,sizeof(depth));//减少函数调用,把bfs放入主过程
			int Top=1,Tail=0;
			depth[S]=1;
			Queue[1]=S;
			do
			{
				Tail++;
				int u=Queue[Tail];
				if (u==T)
					break;
				for (int i=Head[u];i!=-1;i=Next[i])
				{
					int v=E[i].v;
					if ((E[i].flow>0)&&(depth[v]==-1))
					{
						depth[v]=depth[u]+1;
						Top++;
						Queue[Top]=v;
					}
				}
			}
			while (Top!=Tail);
			if (depth[T]==-1)
				break;
			for (int i=1;i<=n;i++)//当前弧优化,这个优化力度很明显,一定要加
				cur[i]=Head[i];
			while (int di=dfs(S,inf))//dfs寻找增广路
				Ans+=di;
		}
		printf("%d\n",Ans);
	}
	return 0;
}
inline int read()//读入优化,不知道为什么scanf比读入优化快300ms,可能是评测机的问题
{
	int x=0;
	scanf("%d",&x);//这里直接用scanf读入
	return x;
	int k=1;
	char ch=getchar();
	while (((ch>'9')||(ch<'0'))&&(ch!='-'))
		ch=getchar();
	if (ch=='-')
	{
		ch=getchar();
		k=-1;
	}
	while ((ch>='0')&&(ch<='9'))
	{
		x=x*10+ch-48;
		ch=getchar();
	}
	return x*k;
}
inline void Add_Edge(int u,int v,int flow)//添加边,注意正反向都是流量为flow,因为是双向边
{
	cnt++;
	Next[cnt]=Head[u];
	Head[u]=cnt;
	E[cnt].v=v;
	E[cnt].flow=flow;
	cnt++;
	Next[cnt]=Head[v];
	Head[v]=cnt;
	E[cnt].v=u;
	E[cnt].flow=flow;
	return;
}
int dfs(int u,int flow)//dfs寻增广路
{
	if (u==T)
		return flow;
	for (int &i=cur[u];i!=-1;i=Next[i])
	{
		int v=E[i].v;
		if ((depth[v]==depth[u]+1)&&(E[i].flow>0))
		{
			int di=dfs(v,min(flow,E[i].flow));
		    if (di>0)
			{
				E[i].flow-=di;
				E[i^1].flow+=di;
				return di;
			}
		}
	}
	return 0;
}
另附上我的TLE霸屏截图:

中间两次Mayuri是我用小号交的网上题解的代码,时间也是卡在超时边缘。
前三次AC分别是:scanf读入,去掉一些循环内的冗余部分,原AC代码
第二次AC与第一次AC中间的TLE是去掉当前弧优化后的代码。
代码均已开源(vjudge),可以去看一看是如何一步一步卡时的。
HDU 4280 Island Transport(网络流,最大流)的更多相关文章
- Hdu 4280 Island Transport(最大流)
		
Island Transport Time Limit: 20000/10000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Other ...
 - HDU 4280 Island Transport(网络流)
		
转载请注明出处:http://blog.csdn.net/u012860063 题目链接:pid=4280">http://acm.hdu.edu.cn/showproblem.php ...
 - HDU 4280 Island Transport(无向图最大流)
		
HDU 4280:http://acm.hdu.edu.cn/showproblem.php?pid=4280 题意: 比较裸的最大流题目,就是这是个无向图,并且比较卡时间. 思路: 是这样的,由于是 ...
 - HDU 4280 Island Transport
		
Island Transport Time Limit: 10000ms Memory Limit: 65536KB This problem will be judged on HDU. Origi ...
 - HDU 4280  Island Transport(dinic+当前弧优化)
		
Island Transport Description In the vast waters far far away, there are many islands. People are liv ...
 - HDU 4280 Island Transport(HLPP板子)题解
		
题意: 求最大流 思路: \(1e5\)条边,偷了一个超长的\(HLPP\)板子.复杂度\(n^2 \sqrt{m}\).但通常在随机情况下并没有isap快. 板子: template<clas ...
 - HDU4280:Island Transport(最大流)
		
Island Transport Time Limit: 20000/10000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Other ...
 - G - Island Transport   网络流
		
题目: In the vast waters far far away, there are many islands. People are living on the islands, and a ...
 - 【HDUOJ】4280 Island Transport
		
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4280 题意:有n个岛屿,m条无向路,每个路给出最大允许的客流量,求从最西的那个岛屿最多能运用多少乘客到 ...
 
随机推荐
- 2017-2018-2 20155230《网络对抗技术》实验5:MSF基础应用
			
基础问题回答 用自己的话解释什么是exploit,payload,encode. exploit 就是运行该模块吧,在msf的模块中配置好各项属性后exploit一下就开始运行使用该模块了 paylo ...
 - C++之enum枚举量声明、定义、使用与枚举类详解
			
C++之enum枚举量声明.定义.使用与枚举类详解 学习一个东西,首先应该指导它能做什么,其次去知道它怎么去做,最后知道为什么去这么做. 知其然知其所以然.不能冒进 ,一步一步的慢慢来.
 - 带Alpha通道的色彩叠加问题
			
css3的rgba色彩模式.png/gif图片的alpha通道.canvas的rgba色彩模式.css3的阴影.css3的opacity属性等等,这些应用在网页中,有意无意间,我们的页面多了许多半透明 ...
 - 汇编 do while循环
			
do while生成的汇编代码  do while汇编还原成C++代码 一. do while成生的汇编代码 // int i=0; // do // { // i++; // } while ( ...
 - 11.10 (上午)开课二个月零六天(ajax基础,ajax做登录)
			
test.php <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://ww ...
 - HNOI2019 摸鱼记
			
感觉准备省选时有点浮躁,没有准备联赛时那样认真, 希望能将这次省选当做一个教训吧QAQ. Day -inf 基本上把要学的东西都学了,至少做到了自己心里有底. Day 0 乒乓球室没开差评,打隔膜不带 ...
 - binlog2sql使用总结
			
binlog2sql是大众点评开源的一款用于解析binlog的工具,在测试环境试用了下,还不错. 其具有以下功能 1. 提取SQL 2. 生成回滚SQL 关于该工具的使用方法可参考github操作文档 ...
 - 【源码】进入ASP.NET MVC流程的大门 - UrlRoutingModule
			
UrlRoutingModule的功能 在ASP.NET MVC的请求过程中,UrlRoutingModule的作用是拦截当前的请求URL,通过URL来解析出RouteData,为后续的一系列流程提供 ...
 - 按键精灵对APP自动化测试(下)
			
上一篇介绍了安卓app上使用按键精灵的实践,这里再来说说苹果上的app. 由于iOS相关工具对操作系统的限制,目前在iOS10.0.2系统上应用成功. 二. 苹果手机按键精灵APP录制 适 ...
 - yocto-sumo源码解析(五): bitbake/lib/bb/main.py
			
续前面分析,就该对bitbake_main()这个函数进行分析了,这个函数位于bitbake/lib/bb/main.py. 1. 检测主机操作系统是否为linux并且/dev/shm是否存在,pyt ...