【POJ - 1275】Cashier Employment(差分约束,建图)

题干:

A supermarket in Tehran is open 24 hours a day every day and needs a number of cashiers to fit its need. The supermarket manager has hired you to help him, solve his problem. The problem is that the supermarket needs different number of cashiers at different times of each day (for example, a few cashiers after midnight, and many in the afternoon) to provide good service to its customers, and he wants to hire the least number of cashiers for this job. 

The manager has provided you with the least number of cashiers needed for every one-hour slot of the day. This data is given as R(0), R(1), ..., R(23): R(0) represents the least number of cashiers needed from midnight to 1:00 A.M., R(1) shows this number for duration of 1:00 A.M. to 2:00 A.M., and so on. Note that these numbers are the same every day. There are N qualified applicants for this job. Each applicant i works non-stop once each 24 hours in a shift of exactly 8 hours starting from a specified hour, say ti (0 <= ti <= 23), exactly from the start of the hour mentioned. That is, if the ith applicant is hired, he/she will work starting from ti o'clock sharp for 8 hours. Cashiers do not replace one another and work exactly as scheduled, and there are enough cash registers and counters for those who are hired.

You are to write a program to read the R(i) 's for i=0..23 and ti 's for i=1..N that are all, non-negative integer numbers and compute the least number of cashiers needed to be employed to meet the mentioned constraints. Note that there can be more cashiers than the least number needed for a specific slot. 

Input

The first line of input is the number of test cases for this problem (at most 20). Each test case starts with 24 integer numbers representing the R(0), R(1), ..., R(23) in one line (R(i) can be at most 1000). Then there is N, number of applicants in another line (0 <= N <= 1000), after which come N lines each containing one ti (0 <= ti <= 23). There are no blank lines between test cases.

Output

For each test case, the output should be written in one line, which is the least number of cashiers needed. 
If there is no solution for the test case, you should write No Solution for that case. 

Sample Input

1
1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
5
0
23
22
1
10

Sample Output

1

题目大意:

一句话题意:

在一家超市里,每个时刻都需要有营业员看管,R(i) (0 <= i < 24)表示从i时刻开始到i+1时刻结束需要的营业员的数目,现在有N(N <= 1000)个申请人申请这项工作,并且每个申请者都有一个起始工作时间 ti,如果第i个申请者被录用,那么他会从ti时刻开始连续工作8小时。现在要求选择一些申请者进行录用,使得任何一个时刻i,营业员数目都能大于等于R(i)。求出至少需要录用多少营业员。

解题报告:

  考虑差分约束。

设 num[i] 代表第(i-1)时这个时刻来应聘工作的人数,R[i][i-1,i]这个时间段至少需要的人数, has[i]为在第(i-1)时这个时刻招到的人数。

根据题意需要满足:

0 <= has[i] <= num[i]

has[i] + has[i-1] + …+ has[i-7] >= r[i] (当然遇到i-7小于0的要处理一下)(题目中的连续工作8小时)

但是考虑到不方便建图,重新定义关系:s[i] = has[1] + has[2] + … + has[i]

然后创建出满足题目关系的图:

s[i] - s[i-1] >= 0

s[i] - s[i-1] <= num[i]

s[i] - s[i-8] >= r[i]   (其中8 <= i <= 24)

s[i] + s[24] - s[i+16] >= r[i]  (其中1 <= i <= 7)

然后发现最后一个式子有三个参数了,但是还好s[24]是个常量,虽然不是常量(因为也属于约束系统的)但是最起码可以是个常量(大概因为他不带 i ?)所以我们可以钦点这个常数的大小。然后看能否构造出满足条件的解就可以了。

   当然指定s[24]了之后还要加上s[24] = ans,又因为指定了s[0]=0,所以可以构造s[24]-s[0]=ans。然后题目是求最小值,即求最长路,以0为源点就可以了。又因为这题显然是符合单调性的,所以对这个ans可以二分。

注意一个地方,那就是不能直接不加  s[24] = ans 这个条件,然后直接检测spfa之后的dis[24]<=ans,如果成立则移动r,不成立则移动l。这样是不对的。

因为这样相当于你先假设了s[24]来约束了s[1]~s[7],然后构造出了一个有解的系统,然后检查dis[24],这时候如果dis[24]<ans,则说明说明你在假设了一个综合的前提下得到了更小的解,但是这个解是在假设s[24]的前提下的,你此时因为ans就是s[24],你此时s[24]>dis[24]说明,你在求解的过程中扩大了求解范围(也就是削弱了约束),因为你输入的条件是ans的,结果你现在得到的是小于ans的数,所以你把当前dis[24]带入的虽然是你输入的约束系统的合法解,但未必是符合题意的合法解。也就是dis[24]<ans成立,但是未必dis[24]人为放大到=ans也是成立的,但你输入系统的时候要求dis[24]是ans,所以这样是不可行的。

那有同学就会说,那spfa完后检查dis[24]==ans不就好了?这样也有个问题:就是dis[24]代表的是24号点取最小的时候构成的解,因为你差分约束系统只能求出一组解来不能求出全部解,也不能求出所有最优解,只能求出对于某个点来说的最优解,而此时构造出的s数组对于其他点来说未必是最优解。所以你dis[24]==24成立则肯定没问题,但是dis[24]!=24也不代表就一定不成立。以为可能通过dis[24]变小一丢丢,就可能存在了合法解。我也不知道我上面在说什么,反正大概就是,假设你枚举到一个正确答案ans,输入到差分约束系统,但是你spfa出来可能dis[24]<ans,因为你ans输入了一个比较大的范围,我在这里面可能dis[24]可以取到一个比较小的值,但是dis[24]真取到这个小的值的时候虽然是约束系统的合法解,但是不是题意的合法解(其实我是怎么发现这一点的呢?就是你按照正确的方式建图,然后找到答案了之后,对这个答案用错误的建图方式但是用dis[24]<=ans去检验,也可以AC)。  emmm怎么说呢就是可以理解成:虽然分开看都可以成立,但是不代表他俩可以同时成立。所以解决办法就是加上一个 s[24]=ans 这个约束,然后直接看有无解就可以了(这里就是有无正环)

总的来说:如果<ans来判断会使得求得的答案<正确答案(即求出了看似正确的解但是不是正确的解)

如果用=ans来判断,会使得求得的答案>正确答案(即本身可以是正确的解,但是通过你的判断方法得出这个解是不成立的)

AC代码:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<map>
#include<stack>
#include<vector>
#include<set>
#include<string>
#include<cmath>
#include<cstring>
#define F first
#define S second
#define ll long long
#define pb push_back
#define pm make_pair
using namespace std;
typedef pair<int,int> PII;
const int MAX = 2e5 + 5;
const int INF = 0x3f3f3f3f;
struct Edge {int ne,v,w; 
} e[MAX];
int tot,n;
int head[MAX];
void add(int u,int v,int w) {e[++tot].v = v;e[tot].w = w;e[tot].ne = head[u];head[u] = tot;
}
int dis[MAX],cnt[MAX],vis[MAX];int spfa(int st) {for(int i = 0; i<=1231; i++) dis[i] = -INF; memset(vis,0,sizeof vis);memset(cnt,0,sizeof cnt);queue<int> q;dis[st]=0;q.push(st);vis[st]=1;cnt[st]=1;while(q.size()) {int cur = q.front(); q.pop();vis[cur]=0;for(int i = head[cur]; ~i; i = e[i].ne) {int v = e[i].v;if(dis[v] >= dis[cur] + e[i].w) continue;dis[v] = dis[cur] + e[i].w;if(!vis[v]) {cnt[v]++;vis[v]=1;q.push(v);if(cnt[v] > n) return 99999999;}}}return dis[24];
}
int R[26],num[26];
int main()
{int t;cin>>t;while(t--) {tot=0;memset(head,-1,sizeof head);for(int i = 1; i<=24; i++) scanf("%d",R+i),num[i]=0;scanf("%d",&n);for(int x,i = 1; i<=n; i++) scanf("%d",&x),num[x+1]++;int l = 0,r = n,mid,ans=-1;while(l<=r) {mid=(l+r)>>1;tot=0;memset(head,-1,sizeof head);for(int i = 1; i<=24; i++) add(i-1,i,0),add(i,i-1,-num[i]);for(int i = 9; i<=24; i++) add(i-8,i,R[i]);for(int i = 1; i<=8; i++) add(i+16,i,R[i] - mid);add(0,24,mid);  add(24,0,-mid);if(spfa(0) == mid) ans = mid,r = mid - 1;else l = mid + 1; }if(ans == -1) printf("No Solution\n");else printf("%d\n",ans);}return 0 ;
}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/439973.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

InfluxDB 简介、安装和简单使用

简介 InfluxDB是一个由InfluxData开发的开源时序型数据库。它由Go写成&#xff0c;着力于高性能地查询与存储时序型数据。InfluxDB被广泛应用于存储系统的监控数据&#xff0c;IoT行业的实时数据等场景。可以理解为按时间记录一些数据&#xff08;常用的监控数据、埋点统计数据…

4)机器学习基石笔记 Lecture4:Feasibility of Learning

目录 1&#xff09;Learning is Impossible 2&#xff09;Probability to the Rescue 3&#xff09;Connection to Learning 4&#xff09;Connection to Real Learning 上节课我们主要介绍了机器学习问题的类型&#xff0c;主要是二元分类和回归问题。本节课&#xff0c;我…

Java注解全面解析

1.基本语法 注解定义看起来很像接口的定义。事实上&#xff0c;与其他任何接口一样&#xff0c;注解也将会编译成class文件。 Target(ElementType.Method)Retention(RetentionPolicy.RUNTIME)public interface Test {} 除了符号以外&#xff0c;Test的定义很像一个空的接口。…

ubuntu18.04下安装grafana6和简单使用

ubuntu18.04下安装grafana6 环境 ubuntu18.04 下载 sudo apt-get install -y adduser libfontconfig1 # 使用wget 下载会很慢 # 推荐百度网盘&#xff1a;链接&#xff1a;https://pan.baidu.com/s/1y2I4LwuslB5kHAZwV8RNxw 提取码&#xff1a;o19t # 或者csdn&#xff1a;[gr…

【POJ - 1364】King(差分约束判无解)

题干&#xff1a; Once, in one kingdom, there was a queen and that queen was expecting a baby. The queen prayed: If my child was a son and if only he was a sound king. After nine months her child was born, and indeed, she gave birth to a nice son. Unfortu…

VMware虚拟机下安装Ubuntu16.04镜像完整教程

目录 1&#xff09;安装前准备 2&#xff09;安装Ubuntu 16.04镜像 3&#xff09;One More Thing 1&#xff09;安装前准备 PC电脑操作系统是WIN7&#xff0c;已正确安装虚拟机VMware 12。 2&#xff09;安装Ubuntu 16.04镜像 下载Ubuntu镜像文件&#xff0c;下载链接为…

JAVA 注解的基本原理

以前&#xff0c;『XML』是各大框架的青睐者&#xff0c;它以松耦合的方式完成了框架中几乎所有的配置&#xff0c;但是随着项目越来越庞大&#xff0c;『XML』的内容也越来越复杂&#xff0c;维护成本变高。 于是就有人提出来一种标记式高耦合的配置方式&#xff0c;『注解』…

查看ubuntu系统的版本信息

目录 1&#xff09;查看linux内核、gcc版本、ubuntu版本 2&#xff09;显示linux的内核版本和系统是多少位 1&#xff09;查看linux内核、gcc版本、ubuntu版本 显示如下 Linux version 4.15.0-29-generic (builddlcy01-amd64-024) linux内核版本号 gcc version 5.4…

数字证书原理

基础知识 1. 公钥密码体制 公钥密码体制分为三个部分&#xff0c;公钥、私钥、加密解密算法&#xff0c;它的加密解密过程如下&#xff1a; 加密&#xff1a;通过加密算法和公钥对明文进行加密&#xff0c;得到密文。解密&#xff1a;通过解密算法和私钥对密文进行解密&…

【POJ - 1087】A Plug for UNIX(建图,网络流最大流)

题干&#xff1a; You are in charge of setting up the press room for the inaugural meeting of the United Nations Internet eXecutive (UNIX), which has an international mandate to make the free flow of information and ideas on the Internet as cumbersome and …

框架基础——全面解析Java注解

阅读目录 一、概念二、Java中的常见注解三、注解的分类四、自定义注解五、注解的项目实战六、注解总结 为什么学习注解&#xff1f; 学习注解有什么好处&#xff1f; 学完能做什么&#xff1f; 答&#xff1a;1. 能够读懂别人写的代码&#xff0c;特别是框架相关的代码&…

CS231n Convolutional Neural Networks for Visual Recognition------Scipy and MatplotlibTutorial

源链接为&#xff1a;http://cs231n.github.io/python-numpy-tutorial/。 这篇指导书是由Justin Johnson编写的。 在这门课程中我们将使用Python语言完成所有变成任务&#xff01;Python本身就是一种很棒的通用编程语言&#xff0c;但是在一些流行的库帮助下&#xff08;numpy&…

自签名CA认证

自签名CA认证 用openssl命令生成自己的根证书&#xff0c;让用户安装信任它&#xff0c;之后所有用这个根证书签名的证书&#xff0c;就可以被信任。 生成根证书 创建文件并配置环境mkdir /root/ca cd /root/ca mkdir certs crl newcerts private chmod 700 private touch i…

注解由谁读取并解析的?

问题&#xff1a; 注解由谁读取并解析的&#xff1f;描述: java web 开发&#xff0c;使用ssh框架。在dao层&#xff0c;定义的类的头上有Component("GzDAO")注解&#xff0c;在service层&#xff0c; 定义的类的头上有Service(value "GzService")&…

Python之Numpy入门实战教程(1):基础篇

Numpy、Pandas、Matplotlib是Python的三个重要科学计算库&#xff0c;今天整理了Numpy的入门实战教程。NumPy是使用Python进行科学计算的基础库。 NumPy以强大的N维数组对象为中心&#xff0c;它还包含有用的线性代数&#xff0c;傅里叶变换和随机数函数。 强烈建议大家将本文中…

Go初识与问题

变量&#xff06;常量 变量 命名 由字母、数字、下划线组成&#xff0c;首个字符不能是数字关键字、保留字不能作为变量名变量名字区分大小写驼峰命名声明 1. var : 全局变量var 变量名称 类型var 变量名称1,变量名称2 类型 (同一种类型)var (变量名称1 类型1变量名称2 类型…

【HDU - 4597】Play Game(博弈dp)

题干&#xff1a; Alice and Bob are playing a game. There are two piles of cards. There are N cards in each pile, and each card has a score. They take turns to pick up the top or bottom card from either pile, and the score of the card will be added to his …

1.3)深度学习笔记------浅层神经网络

目录 1&#xff09;Neural Network Overview 2&#xff09;Neural Network Representation 3&#xff09;Computing a Neural Network’s Output&#xff08;重点&#xff09; 4&#xff09;Vectorizing across multiple examples 5&#xff09;Activation functions 6&a…

git 实战

配置ssh git config --global user.name "用户名" git config --global user.email "邮箱"ssh-keygen -t rsa -C "邮箱"需要进行确认:1. 确认秘钥的保存路径(不需要改直接回车)2. 如果上一步置顶的保存路径下已经有秘钥文件&…

SpringMVC 的执行流程

SpringMVC 的执行流程 1&#xff09;用户向服务器发送请求&#xff0c;请求被 Spring 前端控制 Servelt DispatcherServlet捕获&#xff1b; 2&#xff09;DispatcherServlet 对请求 URL 进行解析&#xff0c;得到请求资源标识符&#xff08;URI&#xff09;。然后根据该 URI&…