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;
}
发布了43 篇原创文章 · 获赞 26 · 访问量 3087

猜你喜欢

转载自blog.csdn.net/Leo_zehualuo/article/details/104447402
今日推荐