UVA10325--- The Lottery (容斥)

简介:
#include <iostream>
#include <cstdio>
using namespace std;
typedef long long  LL;
LL get[18];
LL gcd(LL m, LL n)
{
    if(n == 0)
    return m;
    return gcd(n, m%n);
}

LL lcm(LL a, LL b)
{
    LL t=gcd(a, b);
    return a/t*b;
}
int main()
{
    int n,m;
    while(cin>>m>>n)
    {
        for(int i=0; i<n; i++)
        cin>>get[i];
        int sum=0;
        for(int i=1; i<(1<<n); i++)
        {
            LL ans=1;
            int cnt=0;
            for(int j=0; j<n; j++)
            {
                if(i&(1<<j))
                {
                    ans=lcm(ans,get[j]);
                    if(ans>m)
                    break;
                    cnt++;
                }
            }
            if(ans>m)
            continue;
            if(cnt&1)
            sum+=m/ans;
            else
            sum-=m/ans;
        }
        cout<<m-sum<<endl;
    }
    return 0;
}
目录
相关文章
uva127 "Accordian" Patience
uva127 "Accordian" Patience
42 0
UVa11076 - Add Again
UVa11076 - Add Again
55 0
|
人工智能
POJ3104---烘干机
POJ3104---烘干机
扩展KMP --- HDU 3613 Best Reward
Best Reward Problem's Link:   http://acm.hdu.edu.cn/showproblem.php?pid=3613   Mean:  给你一个字符串,每个字符都有一个权值(可能为负),你需要将这个字符串分成两个子串,使得这两个子串的价值之和最大。
996 0
|
人工智能
uva 10189 Minesweeper
/* Minesweeper WA了n次才知道uva格式错了也返回wa没有pe啊尼玛 */ #include&lt;iostream&gt; #include&lt;stdio.h&gt; #include&lt;string.h&gt; using namespace std; char a[105][105]; int main() { int i,j,n,m,
935 0
uva11076Add again
View Code 题意:给定n和n个数,求所有的不重复的全排列的对应数字的和。 分析:对于每个数字,在每一位出现的概率相同,那么只算出一位的结果即可。对于每一位,拿出这个数字后剩下的数字的结果,乘以这个数字对应的下标i那么就是权和了。。
631 0
uva 11636Hello World!
点击打开链接uva11636 水题 #include #include #include #include using namespace std; int solve(int n){ int ans = 0; int ...
728 0