codeforces D. Lemonade Line(水)

D. Lemonade Line

time limit per test:1 second
memory limit per test:256 megabytes
input:standard input
output:standard output

It’s a hot summer day out on the farm, and Farmer John is serving lemonade to his NN cows! All NN cows (conveniently numbered 1…N1…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 NN 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 wiwi 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 NN, and the second line contains the NN space-separated integers w1,w2,…,wNw1,w2,…,wN. It is guaranteed that 1≤N≤1051≤N≤105, and that 0≤wi≤1090≤wi≤109 for each cow ii.

Output

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


水题,意思是有n头牛,每头牛都有忍受的极限——前面多于w只牛它就会溜了;问最短队伍长度;

那直接一个降序排序贪心一下就行了;

代码

#include<cstdio>
#include<cstring>
#include<queue>
#include<vector>
#include<algorithm>
#define MS(X) memset(X,0,sizeof(X))
#define MSC(X) memset(X,-1,sizeof(X))
typedef long long LL;
using namespace std;
const int maxn=100005;
int w[maxn],n,i;
bool cmp(int a,int b){
    return a>b;
}
int main(){
    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(i>w[i]) break;
    }
    printf("%d\n",i);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值