ZOJ Problem Set - 3229 Shoot the Bullet 【有上下界网络流+流量输出】

题目:ZOJ Problem Set - 3229 Shoot the Bullet

分类:有源有汇有上下界网络流

题意:有 n 天和 m 个girls,然后每天给一部分girls拍照,每个girls 有拍照的下限,即最少要拍这么多张,然后每天有k个女孩拍照,摄影师最多可以拍num张,然后 k 个女该每天拍照数量值有上下限,然后问你有没有满足这样条件的给女孩拍照的最大方案,然后按照输入输出每天给女孩拍照的张数。

做这道题目推荐先做:这儿

分析:首先它让你判断能不能满足条件。

按照题目给出的条件很容易建图:

s ---> 天数,

天数  ---->  girls

girls  ----> t

(流量都为当前的上界减去下界)

这样的话就建图成功了,但是这样不能判断,我们在加一条边 t -----> s,流量无穷

这样的话原图编程一个循环图,即前面推荐的题目,按照那样的方法建图,然后求一次最大流看看是否满流。

然后加入满流的话,就可以考虑第二个问题了。每天给女孩拍照的最大的张数?

这样我们可以删去 t ---->  s 得边,然后求一次 s 到 t 的最大流。

然后按照题目要求输出流量就ok。

PS:伤在了英语上,没有读懂题目,然后错了无数次,最后终于懂了,坑题目。

#include <cstdio>
#include <cstring>
#include <string>
#include <iostream>
#include <algorithm>
#include <vector>
#include <map>
#include <queue>
#define Del(a,b) memset(a,b,sizeof(a))
using namespace std;
const int inf = 0x3f3f3f3f;
const int N = 1550;
struct Node
{
    int from,to,cap,flow;
};
vector<int> v[N];
vector<Node> e;
int vis[N];  //构建层次图
int cur[N];
void add_Node(int from,int to,int cap)
{
    e.push_back((Node){from,to,cap,0});
    e.push_back((Node){to,from,0,0});
    int tmp=e.size();
    v[from].push_back(tmp-2);
    v[to].push_back(tmp-1);
}
bool bfs(int s,int t)
{
    Del(vis,-1);
    queue<int> q;
    q.push(s);
    vis[s] = 0;
    while(!q.empty())
    {
        int x=q.front();
        q.pop();
        for(int i=0;i<v[x].size();i++)
        {
            Node tmp = e[v[x][i]];
            if(vis[tmp.to]<0 && tmp.cap>tmp.flow)  //第二个条件保证
            {
                vis[tmp.to]=vis[x]+1;
                q.push(tmp.to);
            }
        }
    }
    if(vis[t]>0)
        return true;
    return false;
}
int dfs(int o,int f,int t)
{
    if(o==t || f==0)  //优化
        return f;
    int a = 0,ans=0;
    for(int &i=cur[o];i<v[o].size();i++) //注意前面 ’&‘,很重要的优化
    {
        Node &tmp = e[v[o][i]];
        if(vis[tmp.to]==(vis[o]+1) && (a = dfs(tmp.to,min(f,tmp.cap-tmp.flow),t))>0)
        {
            tmp.flow+=a;
            e[v[o][i]^1].flow-=a; //存图方式
            ans+=a;
            f-=a;
            if(f==0)  //注意优化
                break;
        }
    }
    return ans;  //优化
}
int dinci(int s,int t)
{
    int ans=0;
    while(bfs(s,t))
    {
        Del(cur,0);
        int tm=dfs(s,inf,t);
        ans+=tm;
    }
    return ans;
}
void MP_clear(int n)
{
    for(int i=0;i<=n;i++)
        v[i].clear();
    e.clear();
}
int come[N],to[N];
int flow[400][N];
vector<pair<int ,int> > pp;
int main()
{
    //freopen("Input.txt","r",stdin);
    int n,m;
    while(~scanf("%d%d",&n,&m))
    {
        Del(come,0);
        Del(to,0);
        Del(flow,0);
        int s=n+m,t = s+1;
        for(int i=0;i<m;i++)
        {
            int x;
            scanf("%d",&x);
            come[n+i]+=x;
            to[t]+=x;
            add_Node(n+i,t,inf);
        }
        for(int i=0;i<n;i++)
        {
            int cas,num;
            scanf("%d%d",&cas,&num);
            add_Node(s,i,num);
            for(int j=0;j<cas;j++)
            {
                int x,y,z;
                scanf("%d%d%d",&x,&y,&z);
                pair<int,int> ts(i,x);
                pp.push_back(ts);
                flow[i][x]+=y;
                come[i]+=y;
                to[n+x]+=y;
                add_Node(i,n+x,z-y);  //SB
            }
        }
        add_Node(t,s,inf);  //
        int ss=t+1,tt=ss+1;
        int count=0;
        for(int i=0;i<=t;i++)
        {
            int cha = come[i]-to[i];
            if(cha<0)
            {
                count+=-cha;
                add_Node(ss,i,-cha);
            }
            if(cha>0)
                add_Node(i,tt,cha);
        }
        int ans = dinci(ss,tt);
        if(ans != count)
            puts("-1");
        else
        {
            //add_Node(t,s,0);
            printf("%d\n",dinci(s,t)); //SB
            for(int i=0;i<e.size();i++)
            {
                Node f = e[i];
                if(i%2==0 && f.from<n){
                    flow[f.from][f.to-n]+=f.flow;
                    //printf("%d %d %d %d\n",f.from,f.to,f.cap,f.flow);
                }
            }
            for(int i=0;i<pp.size();i++)
            {
                printf("%d\n",flow[pp[i].first][pp[i].second]);
            }
        }
        printf("\n");
        MP_clear(tt);
        pp.clear();
    }
    return 0;
}
时间: 2024-12-25 18:30:45

ZOJ Problem Set - 3229 Shoot the Bullet 【有上下界网络流+流量输出】的相关文章

ZOJ 3229 Shoot the Bullet 有源有汇带下界的最大流

链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3229 Shoot the Bullet Time Limit: 2 Seconds      Memory Limit: 32768 KB      Special Judge Gensokyo is a world which exists quietly beside ours, separated by a mystical border. It is a u

ZOJ 3229 Shoot the Bullet(有源汇有上下界的最大流)

ZOJ 3229 Shoot the Bullet 链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3229 题意:一个屌丝给m个女神拍照,计划拍照n天,每一天屌丝最多给C个女神拍照,每天拍照数不能超过D张,而且给每个女神 i 拍照有数量限制[Li,Ri],对于每个女神n天的拍照总和不能超过Gi,如果有解求屌丝最多能拍多少张照,并求每天给对应女神拍多少张照:否则输出-1. 思路: 有源汇有上下界的最大流 1. 在原先

ZOJ 3229 Shoot the Bullet

有源点汇点的上下界最大流问题... 建图很简单...按题意即可... 设原图 源点为 s 汇点 为 t,连一条t到s无下界上界无限大的边....设两个超级源S,T,像无源汇判断可行流的问题一样,记录每个点的in,连接到相应的超级源汇点...对S,T跑一遍最大流,并检测S所连边是否满流...如果不满足连可行流都没有无解...否则去掉S,T点(但总点数不要边...在这里错了一下午)对s,t跑一遍最大流.得到的结果既答案.....第一遍最大流保证了每个点的下界流得到满足,此时的图里还有很多自由流可以走

ZOJ 3229 Shoot the Bullet 无源汇上下界最大流

Shoot the Bullet Time Limit: 2 Seconds      Memory Limit: 32768 KB      Special Judge Gensokyo is a world which exists quietly beside ours, separated by a mystical border. It is a utopia where humans and other beings such as fairies, youkai(phantoms)

zoj 3229 Shoot the Bullet(有源汇上下界最大流)

Shoot the Bullethttp://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=3442 Time Limit: 2 Seconds      Memory Limit: 32768 KB      Special Judge Gensokyo is a world which exists quietly beside ours, separated by a mystical border. It is a utopia

【网络流】ZOJ 3229 Shoot the Bullet

题目链接: http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3229 题目大意: n天给m个女孩拍照(1<=n<=365,1<=m<=1000),每个女孩X在n天里总共至少拍Gx张照片. 第k天可以给Ck个女孩拍照,当天总共最多拍Dk张照片,每个女孩这天被拍的数量在[Li,Ri]. 满足要求的条件下尽量多拍照. 求是否有可行解,没有输出-1,有的话输出最大流以及每天对该天能拍照的女孩的拍照数量(巨坑..怪我没

[zoj] 3229 Shoot the Bullet || 有源汇上下界最大流

zoj 文文要给幻想乡的女孩子们拍照,一共n天,m个女孩子,每天文文至多拍D[i]张照片,每个女孩子总共要被文文至少拍G[i]次.在第i天,文文可以拍c[i]个女孩子,c[i]个女孩子中每个女孩子在当天被拍的次数是[l,r],求最多可以拍多少张照片,以及每天每个可以拍的女孩子被拍了多少张照片. 有源汇上下界最大流. 先跑有源汇上下界可行流,判断是否可行,若可行则此时跑原图中s到t的最大流即为答案. //代码与题解不符-- #include<cstdio> #include<algorit

【有上下界网络流】【ZOJ】2314 Reactor Cooling

[算法]有上下界网络流-无源汇(循环流) [题解] 无源汇网络流相当于重建图后跑最大流. 循环流要求每个点(或边)的流入量和流出量相等. http://www.cnblogs.com/liu-runda/p/6262832.html http://hzwer.com/3356.html 入度>出度时(in[x]>0)时,需要流出去,所以从源向点引一条边,引诱它流出去. 入度<出度时(in[x]<0)时,需要流进来,所以从点向汇引一条边,引诱它流进来. 为何这样正确?源和汇的作用只是

ZOJ 2314 Reactor Cooling 无源汇有上下界网络流

题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=1314 题意:给出N个点,M条边的有向图,每条边的有上下界规定,问是否存在一个可行流满足条件,如果满足输出YES并输出每条边的流量. 如果不满足输出NO. 根据周源的<一种简易的方法求解流量有上下界的网络中网络流问题> 无源汇上下界网络流的做法是: 设边u->v的下界是B(u,v),上界是C(u,v). 设M(i)为对于i结点的流入i的下界总和-流出i的下界总