codeforces 545D Queue

博客介绍了Codeforces 545D问题,内容涉及如何通过调整队列中人员顺序来最大化不失望的顾客数量。通过对每个人所需服务时间的比较,以时间排序并进行分析,可以找到使大多数人等待时间不超过服务时间的策略。

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

点击打开链接

D. Queue
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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.


题意:判断最多能有多少人接受服务。

分析:第i个人需要t[i]的服务,那就和它之前的所有时间和比较,如果小于等于当前的服务时间,就可以等,当然了,需要比较,以时间排序。

#include <bits/stdc++.h>
using namespace std;
const int N = 1e5;
int main()
{
    int n;
    int t[N + 5];
    scanf("%d", &n);
    for(int i = 1; i <= n; i++)
    {
        scanf("%d", &t[i]);
    }
    sort(t + 1, t + n + 1);
    int a[N + 5]={0};
    a[1] = t[1];
    int k = 1;
    for(int i = 2; i <= n; i++)
    {
        if(a[k] <= t[i])
        {
            a[k + 1] = a[k] + t[i];
            k++;
        }
    }
    cout << k << endl;
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值