hdu3572 任务分配/最大流量推论全流

意甲冠军:将n分配的任务m机。到的每个任务需要的天数(如果没有持续的日常),并能做到在哪些天任务。询问是否有计划。

典型的任务(X)----日(Y)一半的最大流量,(因为这个任务是天之间的关系)处理器控制流。来源X外交部点,它指的是需要几天。任务xi,为了能够做到即使天,流1,个Y部点向汇点连流量为m,表示该天最多用M个机器。

ps:注意输出格式

#include<iostream>
#include<queue>
#include<cstdio>
#include<cstring>
using namespace std;
const int inf=0x3f3f3f3f;
const int maxv=1001,maxe=200101;
int nume=0;int head[maxv];int e[maxe][3];
void inline adde(int i,int j,int c)
{
    e[nume][0]=j;e[nume][1]=head[i];head[i]=nume;
    e[nume++][2]=c;
    e[nume][0]=i;e[nume][1]=head[j];head[j]=nume;
    e[nume++][2]=0;
}
int ss,tt,n,m,all;
int vis[maxv];int lev[maxv];
bool bfs()
{
    for(int i=0;i<maxv;i++)
      vis[i]=lev[i]=0;
    queue<int>q;
    q.push(ss);
    vis[ss]=1;
    while(!q.empty())
    {
        int cur=q.front();
        q.pop();
        for(int i=head[cur];i!=-1;i=e[i][1])
        {
            int v=e[i][0];
            if(!vis[v]&&e[i][2]>0)
            {
                lev[v]=lev[cur]+1;
                vis[v]=1;
                q.push(v);
            }
        }
    }
    return vis[tt];
}
int dfs(int u,int minf)
{
    if(u==tt||minf==0)return minf;
    int sumf=0,f;
    for(int i=head[u];i!=-1&&minf;i=e[i][1])
    {
        int v=e[i][0];
        if(lev[v]==lev[u]+1&&e[i][2]>0)
        {
            f=dfs(v,minf<e[i][2]?minf:e[i][2]);
            e[i][2]-=f;e[i^1][2]+=f;
            sumf+=f;minf-=f;
        }
    }
    if(!sumf) lev[u]=-1;
    return sumf;
}
int dinic()
{
    int sum=0;
    while(bfs())sum+=dfs(ss,inf);
    return sum;
}
void read_build()
{
    int pi,si,ei;
    for(int i=1;i<=n;i++)
    {
        scanf("%d%d%d",&pi,&si,&ei);
        all+=pi;
        adde(ss,i,pi);
        for(int j=si;j<=ei;j++)
        {
            adde(i,n+j,1);
        }
    }
    for(int i=1;i<=500;i++)
    {
        adde(i+n,tt,m);
    }
}
void init()
{
    scanf("%d%d",&n,&m);
    nume=0;all=0;
    memset(head,-1,sizeof(head));
    ss=n+501;tt=n+502;
}
int main()
{
    int T;
    scanf("%d",&T);int ct=1;
    while(T--)
    {
        init();
        read_build();
        int ans=dinic();
        if(ans==all)printf("Case %d: Yes\n\n",ct++);
        else printf("Case %d: No\n\n",ct++);
    }
}
时间: 2024-11-05 11:12:57

hdu3572 任务分配/最大流量推论全流的相关文章

hdu3572 任务分配/最大流判断满流

题意:将n个任务分配为m个机器,给每个任务需要的天数(无需每天连续),和可以在哪些天去做该任务,求是否存在方案. 典型的任务(X)----天(Y)二分最大流,(因为这里任务是与天的关系)处理器控制流量,源点向X部点,指需要的天数,任务xi,向可以做的天连,流量1,每个Y部点向汇点连流量为m,表示该天最多用M个机器. ps:注意输出格式 #include<iostream> #include<queue> #include<cstdio> #include<cstr

[USACO09JAN]全流Total Flow

题目描述 Farmer John always wants his cows to have enough water and thus has made a map of the N (1 <= N <= 700) water pipes on the farm that connect the well to the barn. He was surprised to find a wild mess of different size pipes connected in an appa

HDU3572:Task Schedule【最大流】

上了一天课 心塞塞的 果然像刘老师那么说 如果你有挂科+4级没过 那基本上是WF队 题目大意:有时间补吧 思路:给每个任务向每个时间点连边容量为1 每个时间点向汇点连边 容量为机器的个数 源点向每个任务连边 容量为该任务所需时间 最后看是否满流 #include <stdio.h> #include <iostream> #include<queue> #include <string.h> #include <algorithm> #defin

洛谷 P2936 [USACO09JAN]全流Total Flow

题目描述 Farmer John always wants his cows to have enough water and thus has made a map of the N (1 <= N <= 700) water pipes on the farm that connect the well to the barn. He was surprised to find a wild mess of different size pipes connected in an appa

HDU4862-Jump(最大流量最大费用流)

题意:有n*m的格子,每一个格子包含一个数字,0-9.你初始的能量为0,你可以玩k次,每一个你可以选择你现在的格子的正下方或者正右方的任意一个格子跳,但必须是之前没有跳过的格子.每玩一次你都可以跳任意次.每跳一次,从(x1, y1) 到 (x2, y2),你将花费|x1-x2|+|y1-y2|-1的能量,如果起止格子的数字相同,你能获得格子里数字的能量. 问你在把每一个格子都经过的基础上,所能得到的最大能量. 每个格子只能经过一个,你可以跳少于k次.你的能量可以为负数. >>之前做过成环覆盖所

HDU3572 Task Schedule 【最大流】

Task Schedule Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 4003    Accepted Submission(s): 1347 Problem Description Our geometry princess XMM has stoped her study in computational geometry t

洛谷——P2936 [USACO09JAN]全流Total Flow

题目描述 Farmer John always wants his cows to have enough water and thus has made a map of the N (1 <= N <= 700) water pipes on the farm that connect the well to the barn. He was surprised to find a wild mess of different size pipes connected in an appa

网络流Dinic(本篇介绍最大流)

前言:看到网上Dinic和ISAP的比较,多数人认为ISAP更快,不容易爆栈.当然,也有少数人认为,在多数情况下,Dinic比较稳定.我认为Dinic的思路比ISAP更简明,所以选择了Dinc算法 介绍:Dinic算法本身,自然是解决最大流(普通最大流,最大流最小割)的算法.通过处理,也可以解决二分图的最大匹配(下文介绍),最大权闭合图. 算法介绍:介绍Dinic之前,我们先介绍一下最大流.在最大流的题目中,图被称为"网络",每条边的边权被称作"流量",有一个起点(

poj-1459-最大流dinic+链式前向星

title: poj-1459-最大流dinic+链式前向星 date: 2018-11-22 20:57:54 tags: acm 刷题 categories: ACM-网络流-最大流 概述 这道是一道网络流里最大流的板子题,,, 暑期集训网络流草草水过,,连基本的算法都不知道有哪些,,,更别提怎么实现了,,,只知道网络流的大致的概念,, 今天花了一天的时间重新学习了一波,,,本以为这东西很简单,,,没想到不仅算法的实现一大堆的东西,,就连题目都有时候看不懂,,,,感受就是网络流的题不仅算法实