POJ2047 Concert Hall Scheduling(最小费用最大流)

题目大概是有两个音乐厅,有n个乐队申请音乐厅,他们必须从第ii天到第ji天连续开音乐会且他们的开价是wi,每天每个音乐厅都只能供一个乐队进行音乐会。问接受哪些乐队的申请,获利最多能多少。

这题相当于在一条数轴上选择最大权和的线段,使两两相交的线段不超过两个。POJ3680,区间k覆盖。

先把每个申请的时间段处理成左闭右开的区间,然后离散化,建容量网络,跑MCMF即可。

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<queue>
 4 #include<algorithm>
 5 using namespace std;
 6 #define INF (1<<30)
 7 #define MAXN 1111
 8 #define MAXM 1111*1111*2
 9 struct Edge{
10     int u,v,cap,cost,next;
11 }edge[MAXM];
12 int vs,vt,NV,NE,head[MAXN];
13 void addEdge(int u,int v,int cap,int cost){
14     edge[NE].u=u; edge[NE].v=v;
15     edge[NE].cap=cap; edge[NE].cost=cost;
16     edge[NE].next=head[u]; head[u]=NE++;
17     edge[NE].u=v; edge[NE].v=u;
18     edge[NE].cap=0; edge[NE].cost=-cost;
19     edge[NE].next=head[v]; head[v]=NE++;
20 }
21 int d[MAXN],pre[MAXN];
22 bool vis[MAXN];
23 bool SPFA(){
24     for(int i=0; i<NV; ++i){
25         d[i]=INF; vis[i]=0;
26     }
27     d[vs]=0; vis[vs]=1;
28     queue<int> que;
29     que.push(vs);
30     while(!que.empty()){
31         int u=que.front(); que.pop();
32         for(int i=head[u]; i!=-1; i=edge[i].next){
33             int v=edge[i].v;
34             if(edge[i].cap && d[v]>d[u]+edge[i].cost){
35                 d[v]=d[u]+edge[i].cost;
36                 pre[v]=i;
37                 if(!vis[v]){
38                     vis[v]=1;
39                     que.push(v);
40                 }
41             }
42         }
43         vis[u]=0;
44     }
45     return d[vt]!=INF;
46 }
47 int MCMF(){
48     int res=0;
49     while(SPFA()){
50         int flow=INF,cost=0;
51         for(int u=vt; u!=vs; u=edge[pre[u]].u){
52             flow=min(flow,edge[pre[u]].cap);
53         }
54         for(int u=vt; u!=vs; u=edge[pre[u]].u){
55             edge[pre[u]].cap-=flow;
56             edge[pre[u]^1].cap+=flow;
57             cost+=flow*edge[pre[u]].cost;
58         }
59         res+=cost;
60     }
61     return res;
62 }
63 int x[1111],y[1111],w[1111],point[2222],pn;
64 int getposi(int a){
65     return lower_bound(point,point+pn,a)-point;
66 }
67 int main(){
68     int n;
69     while(~scanf("%d",&n) && n){
70         pn=0;
71         for(int i=0; i<n; ++i){
72             scanf("%d%d%d",x+i,y+i,w+i);
73             point[pn++]=x[i];
74             point[pn++]=++y[i];
75         }
76         sort(point,point+pn);
77         pn=unique(point,point+pn)-point;
78         vs=pn; vt=vs+1; NV=vt+1; NE=0;
79         memset(head,-1,sizeof(head));
80         addEdge(vs,0,2,0); addEdge(pn-1,vt,2,0);
81         for(int i=1; i<pn; ++i){
82             addEdge(i-1,i,INF,0);
83         }
84         for(int i=0; i<n; ++i){
85             addEdge(getposi(x[i]),getposi(y[i]),1,-w[i]);
86         }
87         printf("%d\n",-MCMF());
88     }
89     return 0;
90 }
时间: 2024-10-19 06:21:27

POJ2047 Concert Hall Scheduling(最小费用最大流)的相关文章

UVA 1317 - Concert Hall Scheduling(网络流)

UVA 1317 - Concert Hall Scheduling 题目链接 题意:现在有两个音乐厅,有一些人要租用,每次租一个区间的时间,给w钱,要求一个租的方案使得总收入最大,问总收入 思路:区间k覆盖问题,一个左闭右开区间可以建一条边,容量为1,代价为-w(因为要求最大),然后区间每个[i, i + 1]建一条边,容量2,代价0,然后跑一下费用流即可 代码: #include <cstdio> #include <cstring> #include <vector&g

【BZOJ3876】【Ahoi2014】支线剧情 有下界的最小费用最大流

#include <stdio.h> int main() { puts("转载请注明出处谢谢"); puts("http://blog.csdn.net/vmurder/article/details/43025375"); } [BZOJ2324]营救皮卡丘 这道题也是一道有下界的最小费用最大流. 我的题解地址:http://blog.csdn.net/vmurder/article/details/41378979 这道题其实就是模板题. 我的处理

POJ 3686.The Windy&#39;s 最小费用最大流

The Windy's Time Limit: 5000MS   Memory Limit: 65536K Total Submissions: 5477   Accepted: 2285 Description The Windy's is a world famous toy factory that owns M top-class workshop to make toys. This year the manager receives N orders for toys. The ma

P3381 【模板】最小费用最大流

P3381 [模板]最小费用最大流 题目描述 如题,给出一个网络图,以及其源点和汇点,每条边已知其最大流量和单位流量费用,求出其网络最大流和在最大流情况下的最小费用. 输入输出格式 输入格式: 第一行包含四个正整数N.M.S.T,分别表示点的个数.有向边的个数.源点序号.汇点序号. 接下来M行每行包含四个正整数ui.vi.wi.fi,表示第i条有向边从ui出发,到达vi,边权为wi(即该边最大流量为wi),单位流量的费用为fi. 输出格式: 一行,包含两个整数,依次为最大流量和在最大流量情况下的

C++之路进阶——最小费用最大流(支线剧情)

F.A.Qs Home Discuss ProblemSet Status Ranklist Contest ModifyUser  hyxzc Logout 捐赠本站 Notice:由于本OJ建立在Linux平台下,而许多题的数据在Windows下制作,请注意输入.输出语句及数据类型及范围,避免无谓的RE出现. 3876: [Ahoi2014]支线剧情 Time Limit: 10 Sec  Memory Limit: 256 MBSubmit: 542  Solved: 332[Submit

hdu 4494 Teamwork 最小费用最大流

Teamwork Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=4494 Description Some locations in city A has been destroyed in the fierce battle. So the government decides to send some workers to repair these location

POJ - 2195 Going Home(最小费用最大流)

1.N*M的矩阵中,有k个人和k个房子,每个人分别进入一个房子中,求所有人移动的最小距离. 2.人看成源点,房子看成汇点,求最小费用最大流. 建图-- 人指向房子,容量为1,费用为人到房子的曼哈顿距离. 建立超级源点和超级汇点:超级源点指向人,容量为1,费用为0:超级汇点指向房子,容量为1,费用为0. 求超级源点到超级汇点的最小费用最大流即可. ps:容量为什么都设为1?---有待研究.. 3. 1.Bellman-Ford: #include<iostream> #include<st

hdu 1853 Cyclic Tour 最小费用最大流

题意:一个有向图,现在问将图中的每一个点都划分到一个环中的最少代价(边权和). 思路:拆点,建二分图,跑最小费用最大流即可.若最大流为n,则说明是最大匹配为n,所有点都参与,每个点的入度和出度又是1,所以就是环. /********************************************************* file name: hdu1853.cpp author : kereo create time: 2015年02月16日 星期一 17时38分51秒 *******

最小费用最大流

Farm Tour http://poj.org/problem?id=2135 建图再说吧 1 #include<cstdio> 2 #include<cstring> 3 #include<cstdlib> 4 #include<cmath> 5 #include<map> 6 #include<stack> 7 #include<queue> 8 #include<vector> 9 #include&l