codeforces 373 C. Counting Kangaroos is Fun
http://codeforces.com/contest/373/problem/C 题意:n个袋鼠,每个袋鼠的size为a[i],一只袋鼠的size至少是另一只两倍时才能将它装下,被装下的袋鼠不能再装别的袋鼠且不能被看见。问能看见的袋鼠最少是多少。 思路:贪心。最多有n/2个袋鼠被装下。先排序,然后贪心即可。
/* ***********************************************
Author :111qqz
Created Time :2016年02月18日 星期四 14时32分29秒
File Name :code/cf/problem/373C.cpp
************************************************ */
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <cmath>
#include <cstdlib>
#include <ctime>
#define fst first
#define sec second
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define ms(a,x) memset(a,x,sizeof(a))
typedef long long LL;
#define pi pair < int ,int >
#define MP make_pair
using namespace std;
const double eps = 1E-8;
const int dx4[4]={1,0,0,-1};
const int dy4[4]={0,-1,1,0};
const int inf = 0x3f3f3f3f;
const int N=5E5+7;
int a[N];
int n;
int main()
{
#ifndef ONLINE_JUDGE
freopen("code/in.txt","r",stdin);
#endif
cin>>n;
for ( int i = 1 ; i <= n ; i++) scanf("%d",&a[i]);
sort(a+1,a+n+1);
int j = n;
int ans = 0 ;
for (int i = n/2 ; i >=1 ; i--)
{
if (a[j]>=2*a[i])
{
ans++;
j--;
}
}
cout<<n-ans<<endl;
#ifndef ONLINE_JUDGE
fclose(stdin);
#endif
return 0;
}