HDU 3486(RMQ枚举优化)

Interviewe(转载)

http://acm.hdu.edu.cn/showproblem.php?pid=3486

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


 

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


 
 
  1. 11 300
  2. 7 100 7 101 100 100 9 100 100 110 110
  3. -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

2010 ACM-ICPC Multi-University Training Contest(5)——Host by BJTU

题意

给定n个数,分为m个区间,保证m个区间的元素数目都是一样并且尽可能多,剩余的无法均分的则舍去。

思路

开始用二分+RMQ,但是后来发现二分确实不对,https://blog.csdn.net/f_zyj/article/details/53069693。然后采用了枚举+RMQ的方法AC了,但是要进行一点优化,设v表示最大的vi,m表示要分的段,k为题目中要求的总分,那么m至少为

\frac{k-1}{v}+1,即假设每段都是最大值v。

C++程序


 
 
  1. #include<iostream>
  2. #include<algorithm>
  3. #include<cmath>
  4. using namespace std;
  5. const int N= 200050;
  6. int dp[N][ 23],a[N];
  7. void ST(int n)
  8. {
  9. for( int i= 1;i<=n;i++) dp[i][ 0]=a[i];
  10. for( int j= 1;( 1<<j)<=n;j++)
  11. for( int i= 1;i+( 1<<j) -1<=n;i++)
  12. dp[i][j]=max(dp[i][j -1],dp[i+( 1<<(j -1))][j -1]);
  13. }
  14. int query(int l,int r)
  15. {
  16. int k=( int)( log(( double)(r-l+ 1))/ log( 2.0));
  17. return max(dp[l][k],dp[r-( 1<<k)+ 1][k]);
  18. }
  19. int main()
  20. {
  21. int n,k;
  22. while(~ scanf( "%d%d",&n,&k))
  23. {
  24. int v= -1; //记录a[i]的最大值
  25. if(n< 0&&k< 0) break;
  26. for( int i= 1;i<=n;i++)
  27. {
  28. scanf( "%d",&a[i]);
  29. v=max(v,a[i]);
  30. }
  31. ST(n);
  32. int m=(k -1)/v+ 1; //由于最大值为 v ,因此至少要(k-1)/v+1段才能满足要求
  33. while(m<=n)
  34. {
  35. int ans= 0,num=n/m; //分成m段,每段的元素为n/m个
  36. for( int i= 0;i<m;i++) //求每段的最大值之和
  37. ans+=query(i*num+ 1,(i+ 1)*num);
  38. if(ans>k) break;
  39. m++;
  40. }
  41. printf( "%d\n",m<=n?m: -1);
  42. }
  43. return 0;
  44. }

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值