SCAU2020春季个人排位赛div2 #1----F

题目描述

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.

Examples
Input
5
15 2 1 5 3
Output
4
Note
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.

简单说下这题

这题的题目意思相信大家都看懂了,题目无非就是在选数,让满足的顾客更多。
那这题怎么写呢??这题的解法就是先对输入的整数排序(从小到大排,这样一定是最优的),然后用一个变量存经过的时间,然后如果遇到数大于时间的,那总数就加一。

代码如下:

#include<cstdio>
#include<algorithm>
#include<iostream>
using namespace std;
#define ll long long
int dp[100002]={0};
int main()
{
int n;
while(cin>>n)
{
    int temp,total=1;
    for(int i=1;i<=n;i++)
        cin>>dp[i];
    sort(dp+1,dp+n+1);
    temp=dp[1];
    for(int i=2;i<=n;i++)
    {
        if(dp[i]>=temp)
        {
            total++;
            temp+=dp[i];
        }
    }
    cout<<total<<endl;
}
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

_春与修罗

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值