Interviewe

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

Problem Description
YaoYao
has a company and he wants to employ m people recently. Since his
company is so famous, there are n people coming for the interview.
However, YaoYao is so busy that he has no time to interview them by
himself. So he decides to select exact m interviewers for this task.
YaoYao
decides to make the interview as follows. First he queues the
interviewees according to their coming order. Then he cuts the queue
into m segments. The length of each segment is
, which means he ignores the rest interviewees (poor guys because they
comes late). Then, each segment is assigned to an interviewer and the
interviewer chooses the best one from them as the employee.
YaoYao’s
idea seems to be wonderful, but he meets another problem. He values the
ability of the ith arrived interviewee as a number from 0 to 1000. Of
course, the better one is, the higher ability value one has. He wants
his employees good enough, so the sum of the ability values of his
employees must exceed his target k (exceed means strictly large than).
On the other hand, he wants to employ as less people as possible because
of the high salary nowadays. Could you help him to find the smallest m?
 
Input
The input consists of multiple cases.
In
the first line of each case, there are two numbers n and k, indicating
the number of the original people and the sum of the ability values of
employees YaoYao wants to hire (n≤200000, k≤1000000000). In the second
line, there are n numbers v1, v2, …, vn (each number is between 0 and
1000), indicating the ability value of each arrived interviewee
respectively.
The input ends up with two negative numbers, which should not be processed as a case.
 
Output
For each test case, print only one number indicating the smallest m you can find. If you can’t find any, output -1 instead.
 
Sample Input
11 300
7 100 7 101 100 100 9 100 100 110 110
-1 -1
 
Sample Output
3

Hint

We need 3 interviewers to help YaoYao. The first one interviews people from 1 to 3, the second interviews people from 4 to 6,
and the third interviews people from 7 to 9. And the people left will be ignored. And the total value you can get is 100+101+100=301>300.

 
Source
 
题意:
给出n个数和一个k,找出一个最小的m使得数组被分成m份,每一份的长度是n/m,后面不够n/m个的不够的舍去,满足每一份的最大值之和大于k。
代码:
 //RMQ.二分啊老出错
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
using namespace std;
int peo[];
int dp[][];
void rmq1(int n)
{
for(int i=;i<n;i++)
dp[i][]=peo[i];
for(int j=;(<<j)<=n;j++)
{
for(int i=;i+(<<j)-<n;i++)
dp[i][j]=max(dp[i][j-],dp[i+(<<(j-))][j-]);
}
}
int rmq2(int lef,int rig)
{
int k=;
while(<<(k+)<=rig-lef+) k++;
return max(dp[lef][k],dp[rig-(<<k)+][k]);
}
int main()
{
int n,k;
while(scanf("%d%d",&n,&k))
{
int sum=;
if(n<&&k<) break;
for(int i=;i<n;i++)
{
scanf("%d",&peo[i]);
sum+=peo[i];
}
if(sum<=k)
{
printf("-1\n");
continue;
}
rmq1(n);
int ans=;
int lef=,rig=n,mid;
while(lef<=rig)
{
mid=(lef+rig)>>;
int num=;
int len=n/mid;
for(int i=;i<=mid;i++)
{
num+=rmq2((i-)*len,i*len-);
}
if(num>k)
{
ans=mid;
rig=mid-;
}
else lef=mid+;
}
printf("%d\n",ans);
}
return ;
}

最新文章

  1. 缓存篇(Cache)~第一回 使用static静态成员实现服务器端缓存(导航面包屑)
  2. 《Node.js实战(双色)》作者之一——吴中骅访谈录
  3. 入门Linux
  4. NSFileHandle 、 沙箱机制 、 属性列表
  5. Growling Gears
  6. hdoj 1384 Intervals
  7. memcached真实项目中的应用
  8. CloudStack cloud数据库op_host_capacity表type与控制板上的内容的对应关系
  9. 重载Cocos2D生存期的方法
  10. C#面向对象基本概念总结
  11. 怎么编辑PDF文件内容,PDF文件编辑方法
  12. 第 1 章 JS变量、作用域
  13. 【C++】static关键字的总结
  14. ESP8266 HTTP 项目(2)HTTP网页修改WIFI连接,上电自动连接上次的WIFI。
  15. Google Chrome 下载&amp;绿化&amp;增强
  16. 跟着未名学Office - 高效工作Outlook
  17. ESLint 使用方法
  18. 深入浅出MFC——Document-View深入探讨(五)
  19. 安装 Android Studio
  20. 【洛谷】【线段树】P1047 校门外的树

热门文章

  1. 利用 autoconf 和 automake 生成 Makefile 文件
  2. Swift3.0P1 语法指南——属性
  3. MySQL 常用SQL技巧和常见问题
  4. 按Enter键执行表单验证
  5. nginx实现请求转发
  6. 「转」xtrabackup新版详细说明
  7. jQuery hover事件
  8. sql之left join、right join、inner join的区别
  9. PHP 函数(数组字符串)
  10. 一行实现QQ群组头像,微信群组,圆角等效果. 并支持url直接加载图片