301352: CF253B. Physics Practical
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Physics Practical
题意翻译
第一行输入n( 2<=n<=10^5) 接下来包括n个数据ci(1<=ci<=5000) 任取两个数x,y都满足y<=2*x 为了达到这个条件所需要删除一些数据,求最小删除的个数 注意CF上面明确了 Input file input.txt Output file 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.输入输出格式
输入格式
The first line contains integer $ n $ ( $ 2<=n<=10^{5} $ ) — the number of measurements Vasya made. The second line contains $ n $ integers $ c_{1},c_{2},...,c_{n} $ ( $ 1<=c_{i}<=5000 $ ) — the results of the measurements. The numbers on the second line are separated by single spaces.
输出格式
Print a single integer — the minimum number of results Vasya will have to remove.
输入输出样例
输入样例 #1
6
4 5 3 8 3 7
输出样例 #1
2
输入样例 #2
4
4 3 2 4
输出样例 #2
0