Counting Kangaroos is Fun

题意翻译

有 $n$ 个数 $a_1\sim a_n$,若对于两个数 $a_i,a_j (1\le i,j\le n,a_i\ne0),a_i\le\dfrac{a_j}{2}$,即可把 $a_i$ 删去,$a_j$ 变为 $0$。 输入 $n$ 及数列 $a$,求出最后可剩下数的个数的最小值。

题目描述

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.

输入输出格式

输入格式


The first line contains a single integer — $ n $ $ (1<=n<=5·10^{5}) $ . Each of the next $ n $ lines contains an integer $ s_{i} $ — the size of the $ i $ -th kangaroo $ (1<=s_{i}<=10^{5}) $ .

输出格式


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

输入输出样例

输入样例 #1

8
2
5
7
6
9
8
4
2

输出样例 #1

5

输入样例 #2

8
9
1
6
2
6
5
8
3

输出样例 #2

5