ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

P3980 [NOI2008]志愿者招募 费用流 (人有多大胆地有多大产

2019-02-19 23:38:35  阅读:321  来源: 互联网

标签:cost 人有 val int P3980 edge gtot include 多大产


https://www.luogu.org/problemnew/show/P3980

感觉费用流比网络流的图更难想到,要更大胆。
首先由于日期是连续的,所以图中的点是横向排列的。

这道题有点绕道走的意思,由于一类志愿者是可以服务于一段时间,那我们给第i天连出去多条边,第一条边是流向i+1点的,容量为inf-a【i】,费用为0,
若有i 到 其他点t,费用为w, 则连一条(i, t+1, inf,w)的边

跑一遍费用流,算出结果

#include <algorithm>
#include  <iterator>
#include  <iostream>
#include   <cstring>
#include   <cstdlib>
#include   <iomanip>
#include    <bitset>
#include    <cctype>
#include    <cstdio>
#include    <string>
#include    <vector>
#include     <stack>
#include     <cmath>
#include     <queue>
#include      <list>
#include       <map>
#include       <set>
#include   <cassert>

/*
        
⊂_ヽ
  \\ Λ_Λ  来了老弟
   \('ㅅ')
    > ⌒ヽ
   /   へ\
   /  / \\
   レ ノ   ヽ_つ
  / /
  / /|
 ( (ヽ
 | |、\
 | 丿 \ ⌒)
 | |  ) /
'ノ )  Lノ

*/

using namespace std;
#define lson (l , mid , rt << 1)
#define rson (mid + 1 , r , rt << 1 | 1)
#define debug(x) cerr << #x << " = " << x << "\n";
#define pb push_back
#define pq priority_queue



typedef long long ll;
typedef unsigned long long ull;
//typedef __int128 bll;
typedef pair<ll ,ll > pll;
typedef pair<int ,int > pii;
typedef pair<int,pii> p3;

//priority_queue<int> q;//这是一个大根堆q
//priority_queue<int,vector<int>,greater<int> >q;//这是一个小根堆q
#define fi first
#define se second
//#define endl '\n'

#define boost ios::sync_with_stdio(false);cin.tie(0)
#define rep(a, b, c) for(int a = (b); a <= (c); ++ a)
#define max3(a,b,c) max(max(a,b), c);
#define min3(a,b,c) min(min(a,b), c);


const ll oo = 1ll<<17;
const ll mos = 0x7FFFFFFF;  //2147483647
const ll nmos = 0x80000000;  //-2147483648
const int inf = 0x3f3f3f3f;
const ll inff = 0x3f3f3f3f3f3f3f3f; //18
const ll mod = 2147483648;
const double esp = 1e-8;
const double PI=acos(-1.0);
const double PHI=0.61803399;    //黄金分割点
const double tPHI=0.38196601;


template<typename T>
inline T read(T&x){
    x=0;int f=0;char ch=getchar();
    while (ch<'0'||ch>'9') f|=(ch=='-'),ch=getchar();
    while (ch>='0'&&ch<='9') x=x*10+ch-'0',ch=getchar();
    return x=f?-x:x;
}

inline void cmax(int &x,int y){if(x<y)x=y;}
inline void cmax(ll &x,ll y){if(x<y)x=y;}
inline void cmin(int &x,int y){if(x>y)x=y;}
inline void cmin(ll &x,ll y){if(x>y)x=y;}

/*-----------------------showtime----------------------*/
            
            const int maxn = 1e3+9;
            int a[maxn];
            struct E{
                int v,val,cost;
                int nxt;
            }edge[maxn*maxn];
            int head[maxn],gtot;
            void addedge(int u,int v,int val,int cost){
                edge[gtot].v = v;
                edge[gtot].val = val;
                edge[gtot].cost = cost;
                edge[gtot].nxt = head[u];
                head[u] = gtot++;

                edge[gtot].v = u;
                edge[gtot].val = 0;
                edge[gtot].cost = -cost;
                edge[gtot].nxt = head[v];
                head[v] = gtot++;
            }

            int dis[maxn],pre[maxn],vis[maxn],path[maxn];
            bool spfa(int s,int t){
                memset(dis,inf, sizeof(dis));
                memset(vis, 0, sizeof(vis));
                memset(pre, -1, sizeof(pre));

                dis[s] = 0; vis[s] = 1;
                queue<int>que;
                que.push(s);

                while(!que.empty()){
                    int u = que.front(); que.pop();
                    vis[u] = 0;
                    for(int i=head[u]; ~i; i=edge[i].nxt){
                        int v = edge[i].v, val = edge[i].val, cost = edge[i].cost;
                        if(val > 0 && dis[v] > dis[u] + cost){
                            dis[v] = dis[u] + cost;
                            pre[v] = u; path[v] = i;
                            if(vis[v] == 0){
                                vis[v] = 1;
                                que.push(v);
                            }
                        }
                    }
                }
                return pre[t] != -1;
            }
            int mcmf(int s,int t){
                int flow = 0, cost = 0;
                while(spfa(s, t)){
                    int f = inf;
                    for(int i=t; i!=s; i=pre[i]){
                        f = min(f, edge[path[i]].val);
                    }
                    flow += f;
                    cost += f * dis[t];
                    for(int i=t; i!=s; i=pre[i]){
                        edge[path[i]].val -= f;
                        edge[path[i]^1].val += f;
                    }
                }
                return cost;
            }
int main(){
            memset(head, -1, sizeof(head));
            int n,m;    
            scanf("%d%d", &n, &m);
            rep(i, 1, n) scanf("%d", &a[i]);
            int s = 0, t = n+2;
            addedge(s, 1, inf, 0);
            addedge(n+1, t, inf, 0);
            rep(i, 1, n) addedge(i, i+1, inf - a[i], 0);
            
            while(m --) {
                int u,v,w;
                scanf("%d%d%d", &u, &v, &w);
                addedge(u, v+1, inf, w);
            }
            printf("%d\n", mcmf(s, t));
            
            return 0;
}
View Code

 

标签:cost,人有,val,int,P3980,edge,gtot,include,多大产
来源: https://www.cnblogs.com/ckxkexing/p/10404094.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有