51ND 1432 独木舟

69 篇文章 0 订阅
9 篇文章 0 订阅

贪心算法
基准时间限制:1 秒 空间限制:131072 KB 分值: 10  难度:2级算法题
 收藏
 关注
n个人,已知每个人体重。独木舟承重固定,每只独木舟最多坐两个人,可以坐一个人或者两个人。显然要求总重量不超过独木舟承重,假设每个人体重也不超过独木舟承重,问最少需要几只独木舟?
Input
第一行包含两个正整数n (0<n<=10000)和m (0<m<=2000000000),表示人数和独木舟的承重。
接下来n行,每行一个正整数,表示每个人的体重。体重不超过1000000000,并且每个人的体重不超过m。
Output
一行一个整数表示最少需要的独木舟数。
Input示例
3 6
1
2
3
Output示例
2
曹鹏  (题目提供者)
题解:贪心。排序,取没用过的最后一个与没用过的最前面的一个求和,。如果<=m,ans++,否则只计算后一个,用过了就标记一下。
#include<stdio.h>
#include<string.h>
#include<iostream>
#include<string>
#include<map>
#include<queue>
#include<algorithm>
using namespace std;
#define LL long long
const LL maxm=1e5+10;
LL a[maxm];
map<LL,LL>q;
int main()
{
    LL n,m;
    while(scanf("%d%lld",&n,&m)!=EOF)
    {
        q.clear();
        for(LL i=1;i<=n;i++)
        {
            scanf("%lld",&a[i]);
        }
        sort(a,a+n+1);
        LL ans=0;
        int cnt=1;
        for(LL i=n;i>=1;i--)
        {
            if(cnt==i&&!q[a[i]])
            {
                ans++;
                q[a[i]]=1;
            }
            else
            {
                if(!q[a[i]]&&!q[a[cnt]]&&(a[i]+a[cnt]<=m))
                {
                    q[a[i]]=1;
                    q[a[cnt]]=1;
                    ans++;
                    cnt++;
                }
                else if(!q[a[i]])
                {
                    q[a[i]]=1;
                    ans++;
                }
            }
        }
        printf("%lld\n",ans);
    }
    return 0;
}



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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值