Codeforces #219 (Div. 2) 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

一道让我想吐血的题,信心满满的以为过了,最后测试的时候wa掉了。。。测试数据达到500000的时候错了,实在不知道是什么原因,检查也没查出来。就这样吧
题意是给你n个袋鼠以及对应大小,把较小的放到较大的口袋里,判断最后头在外面的松鼠最少多少只
解题思路是快排,之后按大小关系分两排,上面一排个数为n/2,把上面一排的和下面一排的对应比较,如不满足二倍大小关系则接着看下一排的下一只是否满足,若比较到j==n,则判断结束。
贴上代码:
#include <stdio.h>
#include <algorithm>

using namespace std;
#define max 510000
#define rep(n) for(int i=0; i<n; i++)

int a[max];

int main(void){
    
    int n;
    while(scanf("%d",&n)!=EOF){
     int count = 0;
     int flag = 0;
     rep(n)
      scanf("%d",&a[i]);
      
     sort(a, a+n);
      int j = n/2;
      
      rep(n/2){
       while(2*a[i] > a[j]){
        if(j == n){
         flag = 1;
         break;
        }
        j++;
       }
       if(flag) break;
       count++;
      }
      
     printf("%d\n",n-count);
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值