码迷,mamicode.com
首页 > 其他好文 > 详细

51nod1432贪心

时间:2017-12-07 21:00:50      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:eof   tput   space   scan   包含   algo   stdio.h   nbsp   sort   

n个人,已知每个人体重。独木舟承重固定,每只独木舟最多坐两个人,可以坐一个人或者两个人。显然要求总重量不超过独木舟承重,假设每个人体重也不超过独木舟承重,问最少需要几只独木舟?
Input
第一行包含两个正整数n (0<n<=10000)和m (0<m<=2000000000),表示人数和独木舟的承重。
接下来n行,每行一个正整数,表示每个人的体重。体重不超过1000000000,并且每个人的体重不超过m。
Output
一行一个整数表示最少需要的独木舟数。
Input示例
3 6
1
2
3
Output示例
2
思路:最重的带最轻的,如果超重就比较第二重的加最轻的,以此类推。
ac代码:

#include<stdio.h>
#include<algorithm>
using namespace std;
int main()
{
long long int n,m,a[10010];
while(scanf("%lld%lld",&n,&m)!=EOF)
{
for(int i=0;i<n;i++)
scanf("%lld",&a[i]);
sort(a,a+n);
int t,s=0,h=0;
t=n-1;
for(int i=0;s<=t;i++)
{
if(a[s]+a[t]<=m)
{
h++;
s++;
t--;
}
else
{
h++;
t--;
}

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

51nod1432贪心

标签:eof   tput   space   scan   包含   algo   stdio.h   nbsp   sort   

原文地址:http://www.cnblogs.com/spongeb0b/p/8000305.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!