zoukankan      html  css  js  c++  java
  • C. Counting Kangaroos is Fun 贪心

    C. Counting Kangaroos is Fun
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    There are n kangaroos with pockets. Each kangaroo has a size (integer number). A kangaroo can go into another kangaroo's pocket if and only if the size of kangaroo who hold the kangaroo is at least twice as large as the size of kangaroo who is held.

    Each kangaroo can hold at most one kangaroo, and the kangaroo who is held by another kangaroo cannot hold any kangaroos.

    The kangaroo who is held by another kangaroo cannot be visible from outside. Please, find a plan of holding kangaroos with the minimal number of kangaroos who is visible.

    Input

    The first line contains a single integer — n (1 ≤ n ≤ 5·105). Each of the next n lines contains an integer si — the size of the i-th kangaroo (1 ≤ si ≤ 105).

    Output

    Output a single integer — the optimal number of visible kangaroos.

    Sample test(s)
    input
    8
    2
    5
    7
    6
    9
    8
    4
    2
    output
    5
    input
    8
    9
    1
    6
    2
    6
    5
    8
    3
    output
    5

     作为c题赶脚比较水

    const int maxn = 500100;
    int s[maxn];
    int main() 
    {
        //freopen("in.txt","r",stdin);
        int n;
        while(cin>>n)
        {
            repf(i,1,n)  scanf("%d",&s[i]);
            int ans = 0;
            sort(s+1,s+1+n);
            int j = n/2+1;
            for(int i = 1;i<=n/2&& j <= n;)
            {
                if(s[j] >= 2*s[i])
                {
                    ans++;
                    i++;
                    j++;
                }else
                {
                    j++;
                }
            }
            cout<<ans + n - 2*ans<<endl;
        }
        return 0;
    }
  • 相关阅读:
    Delphi XE2 update4 很快就要来了
    树型菜单表的合并。
    VS宏 之 选中解决方案中的文件
    Mvc,接收复杂对象。
    SQL 2008 CLR开发自定义聚合函数
    数据库主键按业务规则生成的解决方案。
    一些独特的语言思考
    vs环境设置
    SqlServer 2005+ 开发问题
    记录 VS 中的生成时间
  • 原文地址:https://www.cnblogs.com/DreamHighWithMe/p/3475447.html
Copyright © 2011-2022 走看看