Time Limit:1000MS | Memory Limit:65536KB | 64bit IO Format:%I64d & %I64u |
Description
University of New Tmutarakan trains the first-class specialists in mental arithmetic. To enter the University you should master arithmetic perfectly. One of the entrance exams at the Divisibility Department is the following. Examinees are asked to find
K different numbers that have a common divisor greater than 1. All numbers in each set should not exceed a given number
S. The numbers
K and
S are announced at the beginning of the exam. To exclude copying (the Department is the most prestigious in the town!) each set of numbers is credited only once (to the person who submitted it first).
Last year these numbers were
K=25 and
S=49 and, unfortunately, nobody passed the exam. Moreover, it was proved later by the best minds of the Department that there do not exist sets of numbers with the required properties. To avoid embarrassment this year, the dean asked for your help. You should find the number of sets of
K different numbers, each of the numbers not exceeding
S, which have a common divisor greater than 1. Of course, the number of such sets equals the maximal possible number of new students of the Department.
Input
The input contains numbers
K and
S (2 ≤
K ≤
S ≤ 50).
Output
You should output the maximal possible number of the Department's new students if this number does not exceed 10000 which is the maximal capacity of the Department, otherwise you should output 10000.
Sample Input
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<string>
#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
#include<list>
#include<map>
#include<set>
using namespace std;
int k, s;
bool visnum[55];
int su[30], ls;
void oulaprime(int ed){
ls = 0;
memset(visnum, 0, sizeof(visnum));
for(int i = 2; i <= ed; i++){
if(visnum[i] == 0) su[ls ++] = i;
for(int j = 0; j < ls; j++){
if(i * su[j] > ed) break;
visnum[i * su[j] ] = 1;
if(i % su[j] == 0) break;
}
}
}
int cal(int n, int m){
if(n < m) return 0;
m = min(m, n - m);
int res = 1;
for(int i = 1; i <= m; i++){
res = res * (n - i + 1)/ i;
}
return res;
}
int work(){
int cnt;
int ans = 0;
for(int i = 0; i < ls; i++){
if(su[i] > s) break;
cnt = s / su[i];
ans += cal(cnt, k);
}
for(int i = 0; i < ls; i++){
for(int j = i + 1; j < ls; j++){
int cur = su[i] * su[j];
if(cur > s) break;
cnt = s / cur;
ans -= cal(cnt, k);
}
}
if(2 * 3 * 5 <= s) ans += cal(s / 30, k);
// cout << ans << endl;
if(ans > 10000) return 10000;
return ans ;
}
int main()
{
// freopen("in.txt","r",stdin);
oulaprime(50);
while(~scanf("%d%d", &k, &s)){
cout << work() << endl;
}
return 0;
}
input | output |
---|---|
3 10 | 11 |