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

      

  • 相关阅读:
    5G网络类型 ?
    命令行签名
    软件著作权之源代码
    汗,查了很久的问题,竟然是重载错函数
    终于考完PMP
    ImportError: No module named _tkinter on macos
    numpy.trace对于三维以上array的解析
    ValueError: output parameter for reduction operation logical_and has too many dimensions ?
    numexpr low version warning
    Execution failed for task ':compileDebugAidl'.
  • 原文地址:https://www.cnblogs.com/zero-begin/p/4517301.html
Copyright © 2011-2022 走看看