HDU3572_Task Schedule(网络流最大流)[通俗易懂]

HDU3572_Task Schedule(网络流最大流)

大家好,又见面了,我是全栈君。

解题报告

题意:

工厂有m台机器,须要做n个任务。对于一个任务i。你须要花费一个机器Pi天,并且,開始做这个任务的时间要>=Si,完毕这个任务的时间<=Ei。

对于一个任务,仅仅能由一个机器来完毕。一个机器同一时间仅仅能做一个任务。

可是,一个任务能够分成几段不连续的时间来完毕。问,是否能做完所有任务。

思路:

网络流在于建模,这题建模方式是:

把每一天和每一个任务看做点。由源点到每一任务。建容量为pi的边(表示任务须要多少天完毕)。

每一个任务每一天,若是能够在这天做任务,建一条容量为1的边。最后。把每天到汇点再建一条边容量m(表示每台机器最多工作m个任务)。

#include <map>
#include <queue>
#include <vector>
#include <cstdio>
#include <cstring>
#include <iostream>
#define inf 99999999
using namespace std;
int n,m,l[2010],head[2010],cnt,M;
struct node
{
    int v,w,next;
} edge[555000];
void add(int u,int v,int w)
{
    edge[M].v=v;
    edge[M].w=w;
    edge[M].next=head[u];
    head[u]=M++;

    edge[M].v=u;
    edge[M].w=0;
    edge[M].next=head[v];
    head[v]=M++;
}
int bfs()
{
    memset(l,-1,sizeof(l));
    l[0]=0;
    int i,u,v;
    queue<int >Q;
    Q.push(0);
    while(!Q.empty())
    {
        u=Q.front();
        Q.pop();
        for(i=head[u]; i!=-1; i=edge[i].next)
        {
            v=edge[i].v;
            if(l[v]==-1&&edge[i].w>0)
            {
                l[v]=l[u]+1;
                Q.push(v);
            }
        }
    }
    if(l[cnt]>0)return 1;
    return 0;
}
int dfs(int u,int f)
{
    int a,i;
    if(u==cnt)return f;
    for(i=head[u]; i!=-1; i=edge[i].next)
    {
        int v=edge[i].v;
        if(l[v]==l[u]+1&&edge[i].w>0&&(a=dfs(v,min(f,edge[i].w))))
        {
            edge[i].w-=a;
            edge[i^1].w+=a;
            return a;
        }
    }
    l[u]=-1;//没加优化会T
    return 0;
}
int main()
{
    int t,i,j,s,p,e,k=1;
    scanf("%d",&t);
    while(t--)
    {
        M=0;
        memset(head,-1,sizeof(head));
        scanf("%d%d",&n,&m);
        int sum=0,maxx=0;
        for(i=1; i<=n; i++)
        {
            scanf("%d%d%d",&p,&s,&e);
            add(0,i,p);
            sum+=p;
            if(maxx<e)
                maxx=e;
            for(j=s; j<=e; j++)
                add(i,j+n,1);
        }
        cnt=n+maxx+1;
        for(i=1; i<=maxx; i++)
        {
            add(n+i,cnt,m);
        }
        int ans=0,a;
        while(bfs())
            while(a=dfs(0,inf))
                ans+=a;
        printf("Case %d: ",k++);
        if(ans==sum)
            printf("Yes\n");
        else printf("No\n");
        printf("\n");
    }
    return 0;
}

Task Schedule

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 3311    Accepted Submission(s): 1154




Problem Description
Our geometry princess XMM has stoped her study in computational geometry to concentrate on her newly opened factory. Her factory has introduced M new machines in order to process the coming N tasks. For the i-th task, the factory has to start processing it at or after day Si, process it for Pi days, and finish the task before or at day Ei. A machine can only work on one task at a time, and each task can be processed by at most one machine at a time. However, a task can be interrupted and processed on different machines on different days. 

Now she wonders whether he has a feasible schedule to finish all the tasks in time. She turns to you for help.

 


Input
On the first line comes an integer T(T<=20), indicating the number of test cases.

You are given two integer N(N<=500) and M(M<=200) on the first line of each test case. Then on each of next N lines are three integers Pi, Si and Ei (1<=Pi, Si, Ei<=500), which have the meaning described in the description. It is guaranteed that in a feasible schedule every task that can be finished will be done before or at its end day.

 


Output
For each test case, print “Case x: ” first, where x is the case number. If there exists a feasible schedule to finish all the tasks, print “Yes”, otherwise print “No”.

Print a blank line after each test case.

 


Sample Input
   
   
2 4 3 1 3 5 1 1 4 2 3 7 3 5 9 2 2 2 1 3 1 2 2

 


Sample Output
   
   
Case 1: Yes Case 2: Yes

 


Author
allenlowesy
 


Source

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/116195.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 使用等价类划分法设计测试用例_等价类划分法和边界值分析法

    使用等价类划分法设计测试用例_等价类划分法和边界值分析法by青竹居士  等价列划分设计方法是把所有可能的输入数据,即程序的输入域划分成若干部分(子集),然后从每一个子集中选取少量具有代表性的数据作为测试用例。等价类是指某个输入域的子集合。在该子集合中,各个输入数据对于揭露程序中的错误都是等效的。并合理地假定:测试某等价类的代表值就等于对这一类其他值的测试。等价类划分有两种不同的情况:有效等价类和无效等价类。设计时要同时考虑这两种等价类

  • Mybatis中Like 的使用方式以及一些注意点

    做一个积极的人编码、改bug、提升自己我有一个乐园,面向编程,春暖花开!模糊查询在项目中还是经常使用的,本文就简单整理Mybatis中使用Like进行模糊查询的几种写法以及一些常见的问题。使用Springboot简单配置一下Mybatis,然后进行说明。Springboot集成Mybatis这里就不做介绍了。初始数据方式一在Mybatis中的第一种写法: <!–有sq…

  • name python3 is not defined_python cannot import name

    name python3 is not defined_python cannot import name在编辑代码时,如果需要采用非本代码所在文件夹下的代码文件的函数或者类时,那么需要添加该代码文件所在路径,否则会报“NameError:name’XXX’isnotdefined”的错误,其实解决方案也非常简单,只要使用sys函数就可以解决:比如在编写的代码中需要使用另外一个文件夹util内的代码文件Reader.py的一个函数,那么只用在头文件下输入如下语句:imports…

  • 数据仓库搭建ODS层[通俗易懂]

    数据仓库搭建ODS层[通俗易懂]其他内容请关注我的博客!在<项目>专栏里!!!目录一、用户行为数据1.1创建日志表1.2ODS层加载数据脚本二、业务数据2.1hive建表2.2ODS层加载数据脚本一、用户行为数据1.1创建日志表1)创建支持lzo压缩的分区表droptableifexistsods_log;CREATEEXTERNALTABLEods_log(`line`string)PARTITIONEDBY(`dt`string)–

  • B样条曲线拟合原理「建议收藏」

    B样条曲线拟合原理「建议收藏」1.与贝塞尔曲线对比B样条曲线是在Bezier曲线基础上发展起来的一类曲线,它克服了Bezier曲线整体控制性所带来的不便,最常用的是二次和三次B样条曲线。2.二次B样条2.1参数方程已知三个平面离散点P0、P1、P2,由这三点可以定义二次抛物线段,其参数矢量方程形式为:二次B样条曲线参数方程的矩阵形式为:对比着看,

  • 判断字符串是否正序倒序一致(判断回文字符串代码)

    判断字符串是否正序倒序一致(判断回文字符串代码)感觉部分朋友应该是在面试的过程中翻到了笔者的文章,笔者就不废话直接上代码了:判断是不是这种字符串:‘压力大力压’functionpalindrome(str){ letreg=/[\w\_]/g; letstr0=str.toLowerCase().replace(reg,””); letstr1=str0.split(“”).reverse().join(“”…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号