B. Physics Practical

来源:互联网 发布:打谱软件muse用法 编辑:程序博客网 时间:2024/06/11 17:18

time limit per test
1 second
memory limit per test
256 megabytes
input
input.txt
output
output.txt

One day Vasya was on a physics practical, performing the task on measuring the capacitance. He followed the teacher's advice and did as much as n measurements, and recorded the results in the notebook. After that he was about to show the results to the teacher, but he remembered that at the last lesson, the teacher had made his friend Petya redo the experiment because the largest and the smallest results differed by more than two times. Vasya is lazy, and he does not want to redo the experiment. He wants to do the task and go home play computer games. So he decided to cheat: before Vasya shows the measurements to the teacher, he will erase some of them, so as to make the largest and the smallest results of the remaining measurements differ in no more than two times. In other words, if the remaining measurements have the smallest result x, and the largest result y, then the inequality y ≤ 2·x must fulfill. Of course, to avoid the teacher's suspicion, Vasya wants to remove as few measurement results as possible from his notes.

Help Vasya, find what minimum number of measurement results he will have to erase from his notes so that the largest and the smallest of the remaining results of the measurements differed in no more than two times.

Input

The first line contains integer n (2 ≤ n ≤ 105) — the number of measurements Vasya made. The second line contains n integersc1, c2, ..., cn (1 ≤ ci ≤ 5000) — the results of the measurements. The numbers on the second line are separated by single spaces.

Output

Print a single integer — the minimum number of results Vasya will have to remove.

Sample test(s)
input
64 5 3 8 3 7
output
2
input
44 3 2 4
output
0
Note

In the first sample you can remove the fourth and the sixth measurement results (values 8 and 7). Then the maximum of the remaining values will be 5, and the minimum one will be 3. Or else, you can remove the third and fifth results (both equal 3). After that the largest remaining result will be 8, and the smallest one will be 4.


解题说明:题目的意思是给出一系列数字,让求除去最少个数实现最小的数*2>=最大的数,通过对数列进行排序,每次选择一个不同的最小数,然后让找到所有不满足超过最小数两倍的数字。找到一种删除数目最少的情况。

#include <iostream>#include<algorithm>#include<cstdio>#include<cmath>#include<cstring>#include<cstdlib>using namespace std;int main(){int n,a[100005],i,j=1,k=100001;freopen("input.txt","r",stdin);freopen("output.txt","w",stdout);scanf("%d",&n);for(i=1;i<=n;i++){scanf("%d",&a[i]);}sort(a+1,a+n+1);for(i=1;i<=n;i++){while(j<n && a[j+1]<=2*a[i]){j++;}k=min(k,i+n-j-1);}printf("%d\n",k);return 0;}


原创粉丝点击