Ural 1091 Tmutarakan Exams 解题报告(容斥原理)

本文介绍了一个关于寻找特定数量的不同整数集合的问题,这些整数的最大公约数大于1且不超过给定值S。文章提供了算法思路及实现代码,采用组合数学与容斥原理解决该问题。

1091. Tmutarakan Exams

Time limit: 1.0 second
Memory limit: 64 MB
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 andS 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 output
3 10
11


    解题报告:求[1, S]区间内K个不同的数的最大公约数大于1的情况总数。
    简单分析,假设K=3,如果因子为2,那么共有C(S/2, 3)种情况。因子为3,那么共有C(S/3, 3)种情况。
    但是计算3时,6,12,18也计算进去了,而计算2时这三个数也被计算进去了。所有要减去C(S/6, 3)。
    依次进行容斥即可。代码如下:
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

const int maxn = 51;
int c[maxn][maxn];
int deg[maxn], cnt[maxn];
int good[maxn];

void calC()
{
    for(int i=0;i<maxn;i++)
    {
        c[i][0] = 1;
        for(int j=1;j<=i;j++)
        {
            c[i][j]=c[i-1][j]+c[i-1][j-1];
        }
    }
}

int co_prime(int s, int k)
{
    memset(deg, 0, sizeof(deg));
    memset(cnt, 0, sizeof(cnt));
    memset(good, 1, sizeof(good));

    int ans = 0;
    for(int i=2;i<=s;i++)
    {
        if(good[i])
        {
            if(deg[i]==0) deg[i]=1;
            if(s/i<k) break;
            int add = c[s/i][k]*(deg[i]&1?1:-1);
            ans += add;

            for(int j=2;i*j<=s;j++)
            {
                if(deg[i]==1)
                    if(j%i==0)
                        good[i*j]=false;
                    else
                        deg[i*j]++;
            }
        }
    }

    return ans<=10000?ans:10000;
}

int main()
{
    calC();

    int k,s;
    while(~scanf("%d%d",&k,&s))
    {
        printf("%d\n", co_prime(s, k));
    }
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值