(中等) HDU 3416 Marriage Match IV,SPFA+SAP。
Description
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?
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h> using namespace std; const int MaxN=;
const int MaxM=;
const int INF=10e8; namespace first
{ struct Edge
{
int to,next,cost;
}; Edge E[MaxM];
int head[MaxN],Ecou;
int vis[MaxN]; void init(int N)
{
Ecou=; for(int i=;i<=N;++i)
{
head[i]=-;
vis[i]=;
}
} void addEdge(int u,int v,int c)
{
E[Ecou].to=v;
E[Ecou].cost=c;
E[Ecou].next=head[u];
head[u]=Ecou++;
} void SPFA(int lowcost[],int N,int start)
{
queue <int> que;
int u,v,c; for(int i=;i<=N;++i)
lowcost[i]=INF;
lowcost[start]=; que.push(start);
vis[start]=; while(!que.empty())
{
u=que.front();
que.pop(); vis[u]=; for(int i=head[u];i!=-;i=E[i].next)
{
v=E[i].to;
c=E[i].cost; if(lowcost[v]>lowcost[u]+c)
{
lowcost[v]=lowcost[u]+c; if(!vis[v])
{
que.push(v);
vis[v]=;
}
}
}
}
} } namespace second
{ struct Edge
{
int to,next,cap,flow;
}; Edge E[MaxM];
int Ecou,head[MaxN];
int gap[MaxN],dis[MaxN],pre[MaxN],cur[MaxN];
int S,T; void init(int N,int _S,int _T)
{
S=_S;
T=_T;
Ecou=; for(int i=;i<=N;++i)
{
head[i]=-;
gap[i]=dis[i]=;
}
} void addEdge(int u,int v,int c,int rc=)
{
E[Ecou].to=v;
E[Ecou].cap=c;
E[Ecou].flow=;
E[Ecou].next=head[u];
head[u]=Ecou++; E[Ecou].to=u;
E[Ecou].cap=rc;
E[Ecou].flow=;
E[Ecou].next=head[v];
head[v]=Ecou++;
} void update(int remm)
{
int u=T; while(u!=S)
{
E[pre[u]].flow+=remm;
E[pre[u]^].flow-=remm;
u=E[pre[u]^].to;
}
} int SAP(int N)
{
for(int i=;i<=N;++i)
cur[i]=head[i]; int u,v,ret=,remm=INF,mindis; u=S;
pre[S]=-;
gap[]=N; while(dis[S]<N)
{
loop:
for(int i=cur[u];i!=-;i=E[i].next)
{
v=E[i].to; if(E[i].cap-E[i].flow && dis[u]==dis[v]+)
{
pre[v]=i;
cur[u]=i;
u=v; if(u==T)
{
for(int i=pre[u];i!=-;i=pre[E[i^].to])
remm=min(remm,E[i].cap-E[i].flow); ret+=remm;
update(remm);
u=S;
remm=INF;
} goto loop;
}
} mindis=N-;
for(int i=head[u];i!=-;i=E[i].next)
if(E[i].cap-E[i].flow && mindis>dis[E[i].to])
{
cur[u]=i;
mindis=dis[E[i].to];
} if(--gap[dis[u]]==)
break; dis[u]=mindis+; ++gap[dis[u]]; if(u!=S)
u=E[pre[u]^].to;
} return ret;
} } int lowcost[MaxN]; int main()
{
//freopen("in.txt","r",stdin);
//freopen("out.txt","w",stdout); int T;
int N,M;
int A,B;
int a,b,c; scanf("%d",&T); while(T--)
{
scanf("%d %d",&N,&M); first::init(N); {
using namespace first; while(M--)
{
scanf("%d %d %d",&a,&b,&c); addEdge(a,b,c);
} scanf("%d %d",&A,&B); SPFA(lowcost,N,A); second::init(N,A,B); for(int u=;u<=N;++u)
for(int i=head[u];i!=-;i=E[i].next)
if(lowcost[E[i].to]==lowcost[u]+E[i].cost)
second::addEdge(u,E[i].to,);
} {
using namespace second; printf("%d\n",SAP(N));
}
} return ;
}
(中等) HDU 3416 Marriage Match IV,SPFA+SAP。的更多相关文章
- HDU 3416 Marriage Match IV (最短路径,网络流,最大流)
HDU 3416 Marriage Match IV (最短路径,网络流,最大流) Description Do not sincere non-interference. Like that sho ...
- hdu 3416 Marriage Match IV (最短路+最大流)
hdu 3416 Marriage Match IV Description Do not sincere non-interference. Like that show, now starvae ...
- HDU 3416 Marriage Match IV (求最短路的条数,最大流)
Marriage Match IV 题目链接: http://acm.hust.edu.cn/vjudge/contest/122685#problem/Q Description Do not si ...
- HDU 3416 Marriage Match IV(ISAP+最短路)题解
题意:从A走到B,有最短路,问这样不重复的最短路有几条 思路:先来讲选有效边,我们从start和end各跑一次最短路,得到dis1和dis2数组,如果dis1[u] + dis2[v] + cost[ ...
- HDU 3416 Marriage Match IV (Dijkstra+最大流)
题意:N个点M条边的有向图,给定起点S和终点T,求每条边都不重复的S-->T的最短路有多少条. 分析:首先第一步需要找出所有可能最短路上的边.怎么高效地求出呢?可以这样:先对起点S,跑出最短路: ...
- HDU 3416 Marriage Match IV(最短路,网络流)
题面 Do not sincere non-interference. Like that show, now starvae also take part in a show, but it tak ...
- HDU 3416 Marriage Match IV 【最短路】(记录路径)+【最大流】
<题目链接> 题目大意: 给你一张图,问你其中没有边重合的最短路径有多少条. 解题分析: 建图的时候记得存一下链式后向边,方便寻找最短路径,然后用Dijkstra或者SPFA跑一遍最短路, ...
- HDU 3416 Marriage Match IV (最短路径&&最大流)
/*题意: 有 n 个城市,知道了起点和终点,有 m 条有向边,问从起点到终点的最短路一共有多少条.这是一个有向图,建边的时候要注意!!解题思路:这题的关键就是找到哪些边可以构成最短路,其实之前做最短 ...
- HDU 3416 Marriage Match IV dij+dinic
题意:给你n个点,m条边的图(有向图,记住一定是有向图),给定起点和终点,问你从起点到终点有几条不同的最短路 分析:不同的最短路,即一条边也不能相同,然后刚开始我的想法是找到一条删一条,然后光荣TLE ...
随机推荐
- Htttp协议
我 们在浏览器的地址栏里输入的网站地址叫做URL(UniformResourceLocator,统一资源定位符).就像每家每户都有一个门牌地址一样, 每个网页也都有一个Internet地址.当你在浏览 ...
- Windsock套接字I/O模型学习 --- 第二章
1. select模型 select模型主要借助于apiselect来实现,所以先介绍一下select函数 int select( int nfds, // 忽略,仅是为了与 Berkeley 套接字 ...
- Struts2实现国际化
public class I18nAction extends ActionSupport { private static final long serialVersionUID = -693330 ...
- Android实现播放GIF动画的强大ImageView
我个人是比较喜欢逛贴吧的,贴吧里总是会有很多搞笑的动态图片,经常看一看就会感觉欢乐很多,可以释放掉不少平时的压力.确实,比起一张单调的图片,动态图片明显更加的有意思.一般动态图片都是GIF格式的,浏览 ...
- 使用runloop阻塞线程的正确写法
使用runloop阻塞线程的正确写法 runloop可以阻塞线程,等待其他线程执行后再执行. 比如: @implementation ViewController{ BOOL end;}…– ( ...
- 记一次坑die(误)的题目--HDU2553--(DFS)
,N皇后问题 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Subm ...
- elasticsearch高级配置之(二)----线程池设置
elasticsearch 配置 线程池 一个Elasticsearch节点会有多个线程池,但重要的是下面四个: 索引(index):主要是索引数据和删除数据操作(默认是cached类型) 搜索 ...
- java 线程安全
要认识java线程安全,必须了解两个主要的点:java的内存模型,java的线程同步机制.特别是内存模型,java的线程同步机制很大程度上都是基于内存模型而设定的. 浅谈java内存模型: 不同的平台 ...
- AndroidStudio使用注意事项
今天在引入GitHUb上的开源框架时,写好依赖后编译时,报以下错误: Error:Execution failed for task ':app:processDebugResources'.> ...
- 功能强大的HTML
HTML基本标签(一) 1.什么是HTML html:Hyper TextMakeup language:超文本标记语言 html:网页的“源码” 浏览器:“解释和执行”html源码的工具 2.网页的 ...