BZOJ_1221_ [HNOI2001]_软件开发(最小费用流,网络流24题#10)

描述


http://www.lydsy.com/JudgeOnline/problem.php?id=1221

n天,每天需要r个毛巾,用完以后可以洗,要么花fa洗a天,要么花fb洗b天,毛巾不够了可以话f买一个,问最少需要多少钱.

分析


把每天拆成两个点:x[i]表示第i天的脏毛巾,y[i]表示第i天要用的毛巾.

1.s向x[i]连弧,容量为r[i],花费为0,表示每天会用脏r[i]条毛巾.

2.x[i]向x[i+1]连弧(注意边界),容量为INF,花费为0,表示把第i天的脏毛巾搁置到第i+1天(由于可能连续搁置多日,所以可能不只r[i]个).

3.x[i]向y[i+a+1]连弧(注意边界),容量为INF,花费为fa,表示把第i天的脏毛巾拿去进行a洗.

4.x[i]向x[i+b+1]连弧(注意边界),容量为INF,花费为fb,同上.

5.s向y[i]连弧,容量为INF(其实可以是r[i],因为y只流向t,最多流r[i]),花费为f,表示新买毛巾.

6.y[i]向t连弧,容量为r[i],花费为0,表示第i天用了r[i]个毛巾.

注意:

1.用^运算的时候(0,1)是一组,(2,3)是一组这样子,所以从偶数开始,又不能从0开始,所以从2开始.(debug了好久...)

p.s.

1.第一次手写队列,没问题,没想到是手写的链表错了..........

2.网络流24题?以后每天做一道试试吧.

 #include <bits/stdc++.h>
using namespace std; const int maxn=+,INF=<<;
int cnt=;
int head[maxn<<],q[maxn<<],d[maxn<<],p[maxn<<];
bool vis[maxn<<]; struct edge{
int from,to,cap,cost,next;
edge(){}
edge(int from,int to,int cap,int cost,int next):from(from),to(to),cap(cap),cost(cost),next(next){}
}g[maxn*maxn];
void add_edge(int u,int v,int cap,int cost){
g[++cnt]=edge(u,v,cap,cost,head[u]); head[u]=cnt;
g[++cnt]=edge(v,u,,-cost,head[v]); head[v]=cnt;
}
bool spfa(int s,int t){
for(int i=s;i<=t;i++) d[i]=INF, vis[i]=false;
d[s]=; vis[s]=true;
int front=,tail=;
q[tail++]=s;
while(front!=tail){
int u=q[front++]; if(front==) front=;
vis[u]=false;
for(int i=head[u];i;i=g[i].next) if(g[i].cap&&d[g[i].to]>d[u]+g[i].cost){
d[g[i].to]=d[u]+g[i].cost;
p[g[i].to]=i;
if(!vis[g[i].to]){
vis[g[i].to]=true;
q[tail++]=g[i].to; if(tail==) tail=;
}
}
}
return d[t]!=INF;
}
int min_cost(int s,int t){
int ret=,f;
while(spfa(s,t)){
f=INF;
for(int u=t;u!=s;u=g[p[u]].from) f=min(f,g[p[u]].cap);
for(int u=t;u!=s;u=g[p[u]].from) g[p[u]].cap-=f, g[p[u]^].cap+=f;
ret+=d[t]*f;
}
return ret;
}
int main(){
int n,a,b,f,fa,fb;
scanf("%d%d%d%d%d%d",&n,&a,&b,&f,&fa,&fb);
int s=,t=(n<<)+;
for(int i=;i<=n;i++){
if(i+<=n) add_edge(i,i+,INF,);
if(i+a+<=n) add_edge(i,n+i+a+,INF,fa);
if(i+b+<=n) add_edge(i,n+i+b+,INF,fb);
add_edge(,n+i,INF,f);
}
for(int i=;i<=n;i++){
int r; scanf("%d",&r);
add_edge(s,i,r,);
add_edge(n+i,t,r,);
}
printf("%d\n",min_cost(s,t));
return ;
}

1221: [HNOI2001] 软件开发

Time Limit: 10 Sec  Memory Limit: 162 MB
Submit: 1236  Solved: 685
[Submit][Status][Discuss]

Description


软件公司正在规划一项n天的软件开发计划,根据开发计划第i天需要ni个软件开发人员,为了提高软件开发人员的效率,公司给软件人员提供了很多的服务,其
中一项服务就是要为每个开发人员每天提供一块消毒毛巾,这种消毒毛巾使用一天后必须再做消毒处理后才能使用。消毒方式有两种,A种方式的消毒需要a天时
间,B种方式的消毒需要b天(b>a),A种消毒方式的费用为每块毛巾fA,
B种消毒方式的费用为每块毛巾fB,而买一块新毛巾的费用为f(新毛巾是已消毒的,当天可以使用);而且f>fA>fB。公司经理正在规划在
这n天中,每天买多少块新毛巾、每天送多少块毛巾进行A种消毒和每天送多少块毛巾进行B种消毒。当然,公司经理希望费用最低。你的任务就是:为该软件公司
计划每天买多少块毛巾、每天多少块毛巾进行A种消毒和多少毛巾进行B种消毒,使公司在这项n天的软件开发中,提供毛巾服务的总费用最低。

Input

第1行为n,a,b,f,fA,fB. 第2行为n1,n2,……,nn. (注:1≤f,fA,fB≤60,1≤n≤1000)

Output

最少费用

Sample Input

4 1 2 3 2 1
8 2 1 6

Sample Output

38

HINT

Source

上一篇:Android-----输入法的显示和隐藏


下一篇:【Servlet】深入浅出JavaServlet重定向和请求转发