• 51nod 1432 独木舟【贪心】


    基准时间限制: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

    【代码】:
    #include <bits/stdc++.h>
    
    using namespace std;
    #define LL long long
    int n,m;//人数+承重
    int a[10005];
    int main()
    {
        while(cin>>n>>m)
        {
            int ans=0;
            for(int k=0;k<n;k++)
            {
                cin>>a[k];
            }
            sort(a,a+n);
            int i=0,j=n-1;
            while(i<=j)
            {
                if(a[i]+a[j]<=m)//左右指针,左边和右边能放在一起就+1
                {
                    i++;
                    j--;
                    ans++;
                }
                else if(a[i]+a[j]>m)//否则右边自己走
                {
                    j--;
                    ans++;
                }
            }
    
            cout<<ans<<endl;
        }
        return 0;
    }
    View Code
  • 相关阅读:
    odoo邮箱系统
    运行odoo13,走的odoo12的数据库
    字段`in_group_69`不存在
    odoo库存
    Codeforces 1430E
    AtCoder "Regular Contest 102" D
    AtCoder "Grand Contest 041" E
    ZJNU 2471
    ZJNU 2455
    Codeforces 1426F
  • 原文地址:https://www.cnblogs.com/Roni-i/p/7775473.html
Copyright © 2020-2023  润新知