[USACO18OPEN] Lemonade Line

在一个炎热的夏日,农夫约翰正在为他的奶牛们提供柠檬水。每头奶牛都有一个忍耐的排队数,如果前面的牛太多,它就不会排队。通过让忍耐值大的奶牛先排队,可以确保最少数量的奶牛参与排队。代码实现采用排序算法,确保了最少的奶牛会加入排队。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Description

It's a hot summer day out on the farm, and Farmer John is serving lemonade to his N cows! All N cows (conveniently numbered 1…N) like lemonade, but some of them like it more than others. In particular, cow ii is willing to wait in a line behind at most wiwi cows to get her lemonade. Right now all N cows are in the fields, but as soon as Farmer John rings his cowbell, the cows will immediately descend upon FJ's lemonade stand. They will all arrive before he starts serving lemonade, but no two cows will arrive at the same time. Furthermore, when cow ii arrives, she will join the line if and only if there are at most wi cows already in line.

Farmer John wants to prepare some amount of lemonade in advance, but he does not want to be wasteful. The number of cows who join the line might depend on the order in which they arrive. Help him find the minimum possible number of cows who join the line.

Input

The first line contains N, and the second line contains the N space-separated integers w1,w2,…,wN. It is guaranteed that 1≤N≤10e5, and that 0≤wi≤10e9 for each cow i.

Output

Print the minimum possible number of cows who might join the line, among all possible orders in which the cows might arrive.

Example

input

5
7 1 400 2 2

output

3

Note

In this setting, only three cows might end up in line (and this is the smallest possible).

Suppose the cows with w=7 and w=400 arrive first and wait in line.

Then the cow with w=1 arrives and turns away, since 2 cows are already in line. The cows with w=2 then arrive, one staying and one turning away.

解析

每只奶牛都有一个忍耐的排队数,如果前面的牛太多他就不排了哈哈哈...

然后现在问你去排队的奶牛最少有多少头

那当然是忍耐值越大的先排,忍耐值小的在后面肯定不排了...(排序就好)

代码

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cstring>
#include <queue>
using namespace std;
int w[100005];
bool cmp(int a,int b)
{
    return a>b;
}
int main()
{
    int n;
    int i,ans=0;
    scanf("%d",&n);
    for(i=0;i<n;i++)
        scanf("%d",&w[i]);
    sort(w,w+n,cmp);//排个序,从大到小
    for(i=0;i<n;i++)
        if(w[i]>=ans)//能忍的奶牛
            ans++;
    printf("%d\n",ans);
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值