Marriage Match IV(最短路径+最大流)

2023-11-08 11:38

本文主要是介绍Marriage Match IV(最短路径+最大流),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3416

题目大意:求最短路的个数

题目思路:先用SPFA求出最短路径,然后用SAP算法求出最大网络流,即最短的个数,以最短路径上的边建图,用邻接链表存边

题目:

Marriage Match IV

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1478    Accepted Submission(s): 412


Problem Description
Do not sincere non-interference。
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?

Input
The 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.

Output
Output 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 76 7 1 2 1 2 3 1 1 3 3 3 4 1 3 5 1 4 6 1 5 6 1 1 62 2 1 2 1 1 2 2 1 2

Sample Output
  
2 1 1
#include <iostream>
#include <queue>
#include <vector>
#include<string.h>
#include<stdio.h>
using namespace std;
const int inf=0x3f3f3f3f;
struct rec
{int u,v,w,link;
} edge[300005];
struct re
{int v,c;
};
vector<re> E[1005];
bool vis[1005];
int head[1005],pre[1005],cur[1005],dis[1005],gap[1005];
int n,m,num,st,ed;
inline void addedge(int u,int v,int w)
{edge[num].u=u;edge[num].v=v;edge[num].w=w;edge[num].link=head[u];head[u]=num++;edge[num].u=v;edge[num].v=u;edge[num].w=0;edge[num].link=head[v];head[v]=num++;
}
void SPFA()
{int i,v,u;memset(vis,0,sizeof(vis));for(i=1; i<=n; i++)dis[i]=inf;queue<int> Q;dis[st]=0;Q.push(st);while(!Q.empty()){u=Q.front();Q.pop();vis[u]=0;for(i=0; i<E[u].size(); i++){v=E[u][i].v;if(dis[v]>dis[u]+E[u][i].c){dis[v]=dis[u]+E[u][i].c;if(!vis[v]){vis[v]=1;Q.push(v);}}}}
}
int max_flow()
{int i,k,u,v,aug=inf,ans=0;memset(dis,0,sizeof(dis));memset(gap,0,sizeof(gap));gap[0]=n;u=pre[st]=st;for(i=1; i<=n; i++)cur[i]=head[i];while(dis[st]<n){
loop:for(i=cur[u]; i; i=cur[u]=edge[i].link){v=edge[i].v;if(dis[u]==dis[v]+1 && edge[i].w){pre[v]=u;u=v;if(aug>edge[i].w)aug=edge[i].w;if(v==ed){for(u=pre[v]; v!=st; v=u,u=pre[u]){edge[cur[u]].w-=aug;edge[cur[u]^1].w+=aug;}ans+=aug;aug=inf;}goto loop;}}k=n;for(i=head[u]; i; i=edge[i].link){v=edge[i].v;if(k>dis[v] && edge[i].w){cur[u]=i;k=dis[v];}}if(--gap[dis[u]]==0)break;gap[dis[u]=k+1]++;u=pre[u];}return ans;
}
int main()
{int T,i,j,u,v,c;re tmp;scanf("%d",&T);while(T--){scanf("%d%d",&n,&m);for(i=1; i<=n; i++)E[i].clear();num=2;memset(head,0,sizeof(head));for(i=1; i<=m; i++){scanf("%d%d%d",&u,&v,&c);if(u==v)continue;tmp.v=v;tmp.c=c;E[u].push_back(tmp);}scanf("%d%d",&st,&ed);SPFA();for(i=1; i<=n; i++)for(j=0; j<E[i].siz e(); j++)if(dis[E[i][j].v]==dis[i]+E[i][j].c)addedge(i,E[i][j].v,1);printf("%d\n",max_flow());}return 0;
}



这篇关于Marriage Match IV(最短路径+最大流)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/369599

相关文章

python获取指定名字的程序的文件路径的两种方法

《python获取指定名字的程序的文件路径的两种方法》本文主要介绍了python获取指定名字的程序的文件路径的两种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要... 最近在做项目,需要用到给定一个程序名字就可以自动获取到这个程序在Windows系统下的绝对路径,以下

SpringBoot路径映射配置的实现步骤

《SpringBoot路径映射配置的实现步骤》本文介绍了如何在SpringBoot项目中配置路径映射,使得除static目录外的资源可被访问,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一... 目录SpringBoot路径映射补:springboot 配置虚拟路径映射 @RequestMapp

python设置环境变量路径实现过程

《python设置环境变量路径实现过程》本文介绍设置Python路径的多种方法:临时设置(Windows用`set`,Linux/macOS用`export`)、永久设置(系统属性或shell配置文件... 目录设置python路径的方法临时设置环境变量(适用于当前会话)永久设置环境变量(Windows系统

Spring Boot中的路径变量示例详解

《SpringBoot中的路径变量示例详解》SpringBoot中PathVariable通过@PathVariable注解实现URL参数与方法参数绑定,支持多参数接收、类型转换、可选参数、默认值及... 目录一. 基本用法与参数映射1.路径定义2.参数绑定&nhttp://www.chinasem.cnbs

SpringBoot项目配置logback-spring.xml屏蔽特定路径的日志

《SpringBoot项目配置logback-spring.xml屏蔽特定路径的日志》在SpringBoot项目中,使用logback-spring.xml配置屏蔽特定路径的日志有两种常用方式,文中的... 目录方案一:基础配置(直接关闭目标路径日志)方案二:结合 Spring Profile 按环境屏蔽关

VSCode设置python SDK路径的实现步骤

《VSCode设置pythonSDK路径的实现步骤》本文主要介绍了VSCode设置pythonSDK路径的实现步骤,包括命令面板切换、settings.json配置、环境变量及虚拟环境处理,具有一定... 目录一、通过命令面板快速切换(推荐方法)二、通过 settings.json 配置(项目级/全局)三、

使用Python和Matplotlib实现可视化字体轮廓(从路径数据到矢量图形)

《使用Python和Matplotlib实现可视化字体轮廓(从路径数据到矢量图形)》字体设计和矢量图形处理是编程中一个有趣且实用的领域,通过Python的matplotlib库,我们可以轻松将字体轮廓... 目录背景知识字体轮廓的表示实现步骤1. 安装依赖库2. 准备数据3. 解析路径指令4. 绘制图形关键

如何更改pycharm缓存路径和虚拟内存分页文件位置(c盘爆红)

《如何更改pycharm缓存路径和虚拟内存分页文件位置(c盘爆红)》:本文主要介绍如何更改pycharm缓存路径和虚拟内存分页文件位置(c盘爆红)问题,具有很好的参考价值,希望对大家有所帮助,如有... 目录先在你打算存放的地方建四个文件夹更改这四个路径就可以修改默认虚拟内存分页js文件的位置接下来从高级-

一文详解如何查看本地MySQL的安装路径

《一文详解如何查看本地MySQL的安装路径》本地安装MySQL对于初学者或者开发人员来说是一项基础技能,但在安装过程中可能会遇到各种问题,:本文主要介绍如何查看本地MySQL安装路径的相关资料,需... 目录1. 如何查看本地mysql的安装路径1.1. 方法1:通过查询本地服务1.2. 方法2:通过MyS

Python如何调用指定路径的模块

《Python如何调用指定路径的模块》要在Python中调用指定路径的模块,可以使用sys.path.append,importlib.util.spec_from_file_location和exe... 目录一、sys.path.append() 方法1. 方法简介2. 使用示例3. 注意事项二、imp