HDU 4862 最小费用最大流+路径覆盖

点击打开链接

题意:给个n行m列的数列,一个人可以走k次,每次选择一个未走过的点,这个点继续走的话,可以往下走或往右走,当然他可以跳着走,也就是可以跳到下面或右面任意一个位置,但前提是这个点没有走过,初始能量为0,从a,b走到c,d消耗能量是|a-c|+|b-d|-1;问走K次能否将所有点走到,并且每个点只能走一次,,成功的话输出最后可以剩下的最多能量

思路:先要处理k次能否成功,想到了最小路径覆盖=定点数-最大匹配,那么最小路径覆盖的意义就是最小找几个顶点开始跑才可以使路径全被覆盖,也就是所有点被覆盖,刚刚好与此题相似,粘好最小路径覆盖模版,看下面,妹的,竟然是费用流,那这么写好像太麻烦了,想了想也不知道如何在费用流判断这个k路径覆盖,看了官方题解,感觉智商不够用啊,只要在二分图的X部分再加一个边,然后源点到这个点容量为k,费用为0,这个点到Y部所有点容量为1,费用为0;中间可以到达的点就连边,费用为得到的能量-消耗的能量,然后求完备匹配的最大权就行了,最大权的求法点这里

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;
typedef long long ll;
const int inf=0x3f3f3f3f;
const int maxn=1010;
typedef pair P;
struct edge{
    int to,cap,cost,rev;
    edge();
    edge(int a,int b,int c,int d){to=a,cap=b,cost=c,rev=d;};
};
vectorG[maxn];
int h[maxn],dis[maxn],prevv[maxn],preve[maxn];
void addedge(int st,int en,int cap,int cost){
    G[st].push_back(edge(en,cap,cost,G[en].size()));
    G[en].push_back(edge(st,0,-cost,G[st].size()-1));
}
int min_cost_flow(int st,int en,int f){
    int ans=0;
    memset(h,0,sizeof(h));
    while(f>0){
        priority_queue,greater

>que; memset(dis,inf,sizeof(dis)); dis[st]=0;que.push(P(0,st)); while(!que.empty()){ P p=que.top();que.pop(); int v=p.second; if(dis[v]0&&dis[e.to]>dis[v]+e.cost+h[v]-h[e.to]){ dis[e.to]=dis[v]+e.cost+h[v]-h[e.to]; prevv[e.to]=v; preve[e.to]=i; que.push(P(dis[e.to],e.to)); } } } if(dis[en]==inf) return -1; for(int i=0;i


你可能感兴趣的:(图论,网络流,二分图,费用流,线段树)