概述
链接:https://ac.nowcoder.com/acm/problem/24724
来源:牛客网
题目描述
Bessie has received N (1 <= N <= 50,000) chocolates from the bulls, but doesn’t want to eat them too quickly, so she wants to plan out her chocolate eating schedule for the next D (1 <= D <= 50,000) days in order to maximize her minimum happiness level over the set of those days.
Bessie’s happiness level is an integer that starts at 0 and halves (rounding down if necessary) over night as she sleeps. However, when she eats chocolate i, her happiness level increases by integer H_iH
i
(1 <= H_iH
i
<= 1,000,000). If she eats chocolates on a day, her happiness for that day is considered the happiness level after she eats the chocolates. Bessie insists that she eat the chocolates in the order that she received them.
If more than one optimal solution exists, print any one of them.
Consider a sequence of 5 chocolates to be eaten over a period of 5 days; they respectively bring happiness (10, 40, 13, 22, 7).
If Bessie eats the first chocolate (10 happiness) on the first day and then waits to eat the others, her happiness level is 10 after the first day.
Here is the complete schedule which turns out to maximize her minimum happiness:
Day Wakeup happiness Happiness from eating Bedtime happiness
1 0 10+40 50
2 25 — 25
3 12 13 25
4 12 22 34
5 17 7 24
The minimum bedtime happiness is 24, which turns out to be the best Bessie can do.
输入描述:
- Line 1: Two space separated integers: N and D
- Lines 2…N+1: Line i+1 contains a single integer: H_iH
i
输出描述:
- Line 1: A single integer, the highest Bessie’s minimum happiness can be over the next D days
- Lines 2…N+1: Line i+1 contains an integer that is the day on which Bessie eats chocolate i
示例1
输入
复制
5 5
10
40
13
22
7
输出
复制
24
1
1
3
4
5
题意:略。
题记:简单二分。
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=5e4+10;
int a[N],ans[N];
int n,d;
bool check(ll x){
int k=1;
ll sum=0;
for(int i=1;i<=d-1;i++){
sum/=2;
while(k<=n&&sum<x){
ans[k]=i;
sum+=a[k++];
}
if(sum<x)return false;
}
sum/=2;
while(k<=n){
ans[k]=d;
sum+=a[k++];
}
return sum>=x;
}
int main(){
cin>>n>>d;
for(int i=1;i<=n;i++)
cin>>a[i];
ll l=1,r=1e11;
while(l<r){
ll mid=(l+r+1)>>1;
if(check(mid)) l=mid;
else r=mid-1;
}
cout<<l<<endl;
check(l);
for(int i=1;i<=n;i++)
cout<<ans[i]<<endl;
return 0;
}
最后
以上就是虚心心锁为你收集整理的Chocolate Eating(二分)的全部内容,希望文章能够帮你解决Chocolate Eating(二分)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复