zoukankan      html  css  js  c++  java
  • Codeforces Round #303 (Div. 2)——C贪心—— Queue

    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 test(s)
    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<cstring>
    #include<algorithm>
    using namespace std;
    int a[100010];
    int n;
    int main()
    {
        int n;
        while(~scanf("%d",&n)){
            for(int i = 1; i <= n ;i++)
                scanf("%d",&a[i]);
            sort(a+1,a+n+1);
            int cout = 1;
            long long ans = a[1];
            for(int i =2 ; i <= n ;i++){
                if(a[i] >= ans){
                    ans += a[i];
                    cout++;
                }
            }
            printf("%d
    ",cout);
        }
        return 0;
    }
    

      

  • 相关阅读:
    扑克牌大小
    简单错误记录
    聊天室
    GMM的EM算法实现
    Spark SQL 源代码分析之 In-Memory Columnar Storage 之 in-memory query
    JSP简单练习-使用JDOM创建xml文件
    PowerDesigner使用教程
    setsockopt()使用方法(參数具体说明)
    SQL注入原理解说,非常不错!
    Offer是否具有法律效力?
  • 原文地址:https://www.cnblogs.com/zero-begin/p/4517301.html
Copyright © 2011-2022 走看看