2<=N<=500, 1<=M<=124 750, 1<=ti, ci<=10 000
合肥市的公交网络十分发达,你可以认为任意两个车站间都可以通过直达或转车互相到达,当然如果在你提供的删除方案中,家和学校无法互相到达,那么则认为上学需要的最短为正无穷大:这显然是一个合法的方案。
先对原图求一遍最短路,然后把可能在最短路上的边加入到新图中,在新图中求最小割。
那么怎样判断一条边是否可能在最短路上呢?设某条边为(x,y,v),那么如果d[x][0]+d[y][1]+v=d[n][0],这条边就可能在最短路上(其中d[i][0]表示起点到i的最短路,d[i][1]表示终点到i的最短路)。
#include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<algorithm> #include<queue> #define F(i,j,n) for(int i=j;i<=n;i++) #define D(i,j,n) for(int i=j;i>=n;i--) #define ll long long #define pa pair<int,int> #define maxn 550 #define maxm 300000 #define inf 1000000000 using namespace std; struct edge_type { int to,next,v; }e[maxm]; struct edge_2 { int to,next,v,c; }ea[maxm]; int head[maxn],cur[maxn],dis[maxn],heada[maxn],d[maxn][2]; int n,m,s,t,cnt=1,ans=0,cnta=0,p,q,v,c; bool inq[maxn]; inline int read() { int x=0,f=1;char ch=getchar(); while (ch<'0'||ch>'9'){if (ch=='-') f=-1;ch=getchar();} while (ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } inline void add_edge(int x,int y,int v) { e[++cnt]=(edge_type){y,head[x],v};head[x]=cnt; e[++cnt]=(edge_type){x,head[y],0};head[y]=cnt; } inline void add_edgea(int x,int y,int v,int c) { ea[++cnta]=(edge_2){y,heada[x],v,c};heada[x]=cnta; ea[++cnta]=(edge_2){x,heada[y],v,c};heada[y]=cnta; } inline bool bfs() { queue<int>q; memset(dis,-1,sizeof(dis)); dis[s]=0;q.push(s); while (!q.empty()) { int tmp=q.front();q.pop(); if (tmp==t) return true; for(int i=head[tmp];i;i=e[i].next) if (e[i].v&&dis[e[i].to]==-1) { dis[e[i].to]=dis[tmp]+1; q.push(e[i].to); } } return false; } inline int dfs(int x,int f) { int tmp,sum=0; if (x==t) return f; for(int &i=cur[x];i;i=e[i].next) { int y=e[i].to; if (e[i].v&&dis[y]==dis[x]+1) { tmp=dfs(y,min(f-sum,e[i].v)); e[i].v-=tmp;e[i^1].v+=tmp;sum+=tmp; if (sum==f) return sum; } } if (!sum) dis[x]=-1; return sum; } inline void dinic() { ans=0; while (bfs()) { F(i,s,t) cur[i]=head[i]; ans+=dfs(s,inf); } return; } inline void spfa(int s,int f) { queue<int>q; memset(inq,false,sizeof(inq)); d[s][f]=0;inq[s]=true;q.push(s); while (!q.empty()) { int x=q.front();inq[x]=false;q.pop(); for(int i=heada[x];i;i=ea[i].next) { int y=ea[i].to; if (d[y][f]==-1||d[y][f]>d[x][f]+ea[i].v) { d[y][f]=d[x][f]+ea[i].v; if (!inq[y]){inq[y]=true;q.push(y);} } } } } int main() { n=read();m=read(); s=1;t=n; F(i,1,m) { p=read();q=read();v=read();c=read(); add_edgea(p,q,v,c); } memset(d,-1,sizeof(d)); spfa(1,0); spfa(n,1); printf("%d\n",d[n][0]); F(i,1,n) for(int j=heada[i];j;j=ea[j].next) { int y=ea[j].to; if (d[i][0]+ea[j].v+d[y][1]==d[t][0]) add_edge(i,y,ea[j].c); } dinic(); printf("%d\n",ans); }