CF545D.Queue

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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

There are nn people in the queue. For each person we know time tit_{i} 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.

输入格式

The first line contains integer nn ( 1<=n<=1051<=n<=10^{5} ).

The next line contains nn integers tit_{i} ( 1<=ti<=1091<=t_{i}<=10^{9} ), separated by spaces.

输出格式

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

输入输出样例

  • 输入#1

    5
    15 2 1 5 3
    

    输出#1

    4
    

说明/提示

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

首页