列表

详情


NC24724. [USACO 2010 Feb S]Chocolate Eating

描述

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_i (1 <= H_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_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

原站题解

上次编辑到这里,代码来自缓存 点击恢复默认模板

C++11(clang++ 3.9) 解法, 执行用时: 34ms, 内存消耗: 1052K, 提交时间: 2019-11-04 10:25:10

#include<cstdio>
int n,d,h[50005],ans[50005];
bool chk(long long p){
	int al=1,day=0;long long H=0;
	while(day<d){
		while(al<=n&&H<p)H+=h[al],ans[al]=day+1,al++;
		if(al>n&&H<p)return false;
		day++;H>>=1;
        if(day==d)for(int i=al;i<=n;++i)ans[i]=d;
	}return true;
}
int main(){
	scanf("%d%d",&n,&d);
	for(int i=1;i<=n;++i)scanf("%d",&h[i]);
	long long l=0,r=50000000000;
	while(l<r-1)if(chk(l+r>>1))l=l+r>>1;else r=(l+r>>1)-1;
	printf("%lld\n",chk(r)?r:l);chk(chk(r)?r:l);
	for(int i=1;i<=n;++i)printf("%d\n",ans[i]);
}

上一题