The ACM (All Can Meet) club was created with the purpose of attracting people of all ages, with the idea that the people could sit together and share their life experience, to the benefit of all. But as it happened, the club became such a huge success that it was practically impossible to gather all its members at the same place and time. The club then decided to split its members into smaller “sections”. In order to make sure that sections are “nice”, the director of the club decided to impose the following requirements:
A. all members of the same age should be in the same section,
B. all members should be part of exactly one section,
C. in each section, the maximum number of people with the same age should not be more than $R$
times the minimum number of people with the same age, where R is a rational number between $1.0$ and $2.0$. The number $R$ is called the splitting factor of the club. The last condition makes sure that there is no relatively small-age group which might feel uncomfortable in the section. For instance, let denote by $[n, m]$ a group with n members who are m-years old. Then in section $\{[10, 50], [6, 45], [70, 12], [43, 23]\}$ the maximum number of people with the same age is $70$, the minimum number of people with the same age is 6. If R = 2.0, then we say this section does not satisfy the requirement (C) since $\frac{70}{6} \gt 2.0$. However, we can split this section into two smaller sections, namely $\{[10, 50],[6, 45]\}$ and $\{[70, 12], [43, 23]\}$, which satisfy all the requirements.
Given the splitting factor $R$ and a list of the members of the club, you must write a program to find the minimum number of sections satisfying the three requirements above.