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;
    }
    

      

  • 相关阅读:
    2010年8月18日周三_Migrating from 1.3 to 2.0_5
    2010年8月12日_周四_UserControlTask control
    2010年8月18日周三_insideTheAPI_overView_6.1
    一个Flex事件的简单的例子
    2010年8月13日_周五_PrintTask control
    如何发布一个GeometryService服务
    lua分割字符串
    lua字符串合并
    lua 类型转换
    linux 下 svn 冲突解决办法
  • 原文地址:https://www.cnblogs.com/zero-begin/p/4517301.html
Copyright © 2011-2022 走看看