周赛HDU超市服务

小苏西与妈妈购物时思考如何通过调整排队顺序来提高服务效率和顾客满意度。文章探讨了如何通过合理安排顾客排队顺序,减少等待时间过长导致的不满情况,以实现最大化的顾客满意。

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

Description

Little girl Susie went shopping with her mom and she wondered how to improve service quality.

There are n people in the queue. For each person we know time ti needed to serve him. A person will be disappointed if the time he waits is more than the time needed to serve him. The time a person waits is the total time when all the people who stand in the queue in front of him are served. Susie thought that if we swap some people in the queue, then we can decrease the number of people who are disappointed.

Help Susie find out what is the maximum number of not disappointed people can be achieved by swapping people in the queue.

Input

The first line contains integer n (1 ≤ n ≤ 105).

The next line contains n integers ti (1 ≤ ti ≤ 109), separated by spaces.

Output

Print a single number — the maximum number of not disappointed people in the queue.

Sample Input

Input
5
15 2 1 5 3
Output
4

Hint

Value 4 is achieved at such an arrangement, for example: 1, 2, 3, 5, 15. Thus, you can make everything feel not disappointed except for the person with time 5.

///这个题因为数字过大,所以非常有技巧,如果用错了方法,虽然结果对,但提交就TLE,需要用到sort函数。

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
#define N 100100
int a[N];
int main()
{
    int n,i,j;
     scanf("%d",&n);
    for(i=0; i<=n-1; i++)
        {
            scanf("%d",&a[i]);
        }
    sort(a,a+n);
    int k=1;
   int sum=a[0];
    for(i=1;i<=n-1;i++)
    {
      if(sum<=a[i])//判断是否符合条件
      {
        sum=sum+a[i];
        k++;
      }
    }

    printf("%d\n",k);
    return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值