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


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


6

该题是最大流裸体,数据范围很大,可以用dinic但要注意数组要开的够大,且必须要当前弧优化,且最好不用STL(别用queue),方能把时间卡进去(反正我交了一次9400ms左右..)

因为是双向边, 相当于无向图,且题目保证无重边,可以不用每条边再加一个cap为0的残边,

不知把BFS写进主函数会不会节省些时间

 #include <iostream>
#include <cstdio>
#include <string.h>
#include <algorithm>
#define MIN(x,y) ((x)>(y))?(y):(x)
#define MAX(x,y) ((x)>(y))?(x):(y) using namespace std; const int inf = 0x3f3f3f3f;
const int ninf = 0xc0c0c0c0; //无穷小
const int vspot = ;
const int espot = ; struct Edges{
int to, next, cap;
}edges[vspot]; int V, E, cnt;
int S, T, ans;
int linjie[vspot], dist[vspot], cur[vspot];
int Q[espot]; void addEdges( int from, int to, int cap )
{
edges[cnt].to = to;
edges[cnt].cap = cap;
edges[cnt].next = linjie[from];
linjie[from] = cnt++; edges[cnt].to = from;
edges[cnt].cap = cap;
edges[cnt].next = linjie[to];
linjie[to] = cnt++;        //直接加两条边就行
} int BFS()
{
memset( dist, -, sizeof(dist) );
int run, head = , rear = ; Q[head] = S;
dist[S] = ; while(head<rear)
{
run = Q[head++];
for( int i = linjie[run]; i+; i = edges[i].next )
{
int v = edges[i].to, flow = edges[i].cap;
if( dist[v] < && flow > )
{
dist[v] = dist[run] + ;
Q[rear++] = v;
}
}
} if( dist[T] > )
return ;
else
return ;
} int find( int s, int low )
{
int ff = ;
if( s == T )
return low;
for( int& i = cur[s]; i+; i = edges[i].next ) //注意int& i = cur[s] 当前弧优化
{
int v = edges[i].to, cap = edges[i].cap;
if( cap >
&& dist[v] == dist[s] +
&& (ff = find(v,MIN(cap,low))) )
{
edges[i].cap -= ff;
edges[i^].cap += ff;
return ff;
}
}
return ;
} void dinic()
{
ans = ;
int tans;
while(BFS())
{
for( int i = ; i <= V; i++ ) //当前弧优化
cur[i] = linjie[i];
while( tans = find(S,inf) )
ans += tans;
}
} int main()
{
int N;
cin >> N;
while( N-- )
{
scanf( "%d %d", &V, &E );
cnt = ;
memset( linjie, -, sizeof(linjie) ); int x, y, val, x2 = ninf, x1 = inf;
for( int i = ; i <= V; i++ )
{
scanf( "%d %d", &x, &y );
if( x < x1 )
{
x1 = x;
S = i;
} if( x > x2 )
{
x2 = x;
T = i;
}
} for( int i = ; i <= E; i++ )
{
scanf( "%d %d %d", &x, &y, &val );
addEdges(x,y,val);
}
/////////////////////////////////////////////////////////////////
dinic();
cout << ans << endl;
} return ;
}

最新文章

  1. unity3D项目中如何避免硬代码(C#)
  2. WinForm richtextbox 关键字变红色
  3. 记录Android Studio项目提交到github上的出错处理
  4. php返回json,xml,JSONP等格式的数据
  5. JDK源码分析之集合03LinkedList
  6. uva 10900
  7. apacheserver下载、安装、配置
  8. (转)Spring读书笔记-----使用Spring容器(二)
  9. codeforces C. DZY Loves Sequences
  10. cxf客户端代码wsdlLocation设置相对路径
  11. Java安全学习
  12. JS 从剪贴板上传图片
  13. input type=&#39;file&#39;文件上传自定义样式
  14. 莫烦scikit-learn学习自修第六天【特征值矩阵标准化】
  15. java.lang.ClassNotFoundException: com.sun.xml.ws.spi.ProviderImpl解决办法
  16. git简易使用
  17. 常见camera测试卡
  18. ADC转换的分辨率
  19. webBrowser获取取Cookie不全的解决方法
  20. ASP.NET MVC 中使用Ckeditor4.5 编辑器

热门文章

  1. Ubuntu+Ruby+MySQL+Nginx+Redmine部署记录
  2. 立体声耳机接口3F07
  3. 《DSP using MATLAB》Problem 8.29
  4. js 获取字符串中某字符第二次出现的下标
  5. linux最基础最常用的命令快速手记 — 让手指跟上思考的速度(三)
  6. &lt;scrapy爬虫&gt;基本知识-修改链接-中间件
  7. 02.Hibernate配置文件之映射配置文件
  8. 2018.10.29安装tensorflow
  9. 微信小程序——简易动画案例
  10. 在sqlserver 的函数或存储过程中抛出异常(raiserror )