传送门
航空路线问题
题意:给定起终点,找出两条除起终点之外无相交点的最长路径.
I think
最大费用流问题.拆点后对于直航< a,b>,仅当a< b时连边(若当a>b时也连边,则出现正环,SPFA无法求解),将点1与点N所连边流量设置为2,相当于找出两条除起点与终点之外无重合的路径.
输出方案时只依靠pre回头找常常是行不通的,因为如果不特殊处理,你无法知道若干条流什么时候汇,什么时候分.因此还是”备份”一下边容量的初始状态,再dfs找有流经过的边.注意只选择正向边(i%2==0).
类似数字梯形的某要求.
Code
#include<iostream>
#include<cstdio>
#include<string>
#include<queue>
#include<map>
using namespace std;
const int sm = 205;
const int sn = 1e4;
const int Inf = 0x3f3f3f3f;
int N,M,S,T,tot=1;
int to[sn],nxt[sn],hd[sm],c[sn],f[sn];
int pre[sm],vis[sm],cst[sm],ord[sm];
map<string,int>msi;
map<