Codeforces-372A Counting Kangaroos is Fun(贪心)



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 nextn lines contains an integer si — the size of thei-th kangaroo (1 ≤ si ≤ 105).

Output

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

Examples
Input
8
2
5
7
6
9
8
4
2
Output
5
Input
8
9
1
6
2
6
5
8
3
Output
5
这里假设最后一只袋鼠能放下的最大袋鼠是在ai;
同理,倒数第二只袋鼠能放下的最大袋鼠是在aj;
j一定是小于i的
.....
反复做直到第一只袋鼠判结束.
#include<stdio.h>
#include<algorithm>
using namespace std;
int a[500005];
int n,i,k,l,r,mid;
int main()
{
    scanf("%d",&n);
    for (i=0;i<n;i++)
    {
        scanf("%d",&a[i]);
    }
        sort(a,a+n);
         mid=(n-1)/2;
         r=n-1;
         l=mid;
         k=0;
        while(r>mid&&l>=0)
        {
            if(a[l]*2<=a[r])
            {
                k=k+1;
                l=l-1;
                r=r-1;
            }
            else
            {
                l=l-1;
            }
        }
        printf("%d\n",n-k);


}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值