洛谷题单指南-排序-P2676 [USACO07DEC] Bookshelf B

原题链接:https://www.luogu.com.cn/problem/P2676

题意解读:要使能够到书架顶的牛数量最少,优先选高的牛即可,直到总身高超过书架高度,简单的排序+贪心,下面给出代码。

100分代码:

#include <bits/stdc++.h>
using namespace std;

const int N = 20005;

int h[N];
int n, b;

int main()
{
    cin >> n >> b;
    for(int i = 1; i <= n; i++) cin >> h[i];

    sort(h + 1, h + n + 1, greater<int>());

    int sum = 0, cnt = 0;
    for(int i = 1; i <= n; i++)
    {
        sum += h[i];
        cnt++;
        if(sum >= b) break;
    }

    cout << cnt;
    
    return 0;
}

 

posted @ 2024-01-30 10:26  五月江城  阅读(64)  评论(0编辑  收藏  举报