首页 > 其他 > 详细

Codeforces 388A Fox and Box Accumulation(贪心)

时间:2014-04-07 13:52:34      阅读:398      评论:0      收藏:0      [点我收藏+]

题意:给出n个箱子,每个箱子都有一个力量值Vi,代表能支撑Vi个箱子,求能把这些箱子摆成的最少的堆数.

思路:刚开始想着从大到小排序来做,从第i个箱子开始能放上去的就放上去,题目的最后一个数据很好的否定了这种做法.

应该从小到大排序,记录当前堆的个数,能否把当前堆放到下一个箱子上,不能放就作为一堆.

#include <cstdio>
#include <functional>
#include <algorithm>
using namespace std;
const int MAX = 101;

int boxes[MAX];
bool vis[MAX];
int main(int argc, char const *argv[]){
	int n, ans = 0;
	scanf("%d", &n);
	for(int i = 0; i < n; ++i){
		scanf("%d", &boxes[i]);
	}

	sort(boxes, boxes + n);
	for(int i = 0; i < n; ++i){
		if(vis[i])continue;
		int cnt = 1;
		for(int j = i + 1; j < n; ++j){
			if(!vis[j] && boxes[j] >= cnt){
				cnt++;
				vis[j] = true;
			}
		}
		ans++;
	}

	printf("%d\n", ans);
	return 0;
}


Codeforces 388A Fox and Box Accumulation(贪心),布布扣,bubuko.com

Codeforces 388A Fox and Box Accumulation(贪心)

原文:http://blog.csdn.net/zxjcarrot/article/details/23090317

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!