码迷,mamicode.com
首页 > 其他好文 > 详细

ZOJ 2836 Number Puzzle ( 容斥原理 )

时间:2014-11-03 23:57:57      阅读:387      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   for   sp   

 

ZOJ 2836 Number Puzzle ( 容斥原理 )

 

bubuko.com,布布扣

 

 

bubuko.com,布布扣
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long LL;
#define CLR( a, b ) memset( a, b, sizeof(a) )
int m, n, A[11];

LL gcd( LL a, LL b )
{
    return b == 0 ? a : gcd( b, a % b );
}
LL lcm( LL a, LL b )
{
    return a / gcd( a, b ) * b;
}


void solve()
{
    LL ans = 0;
    for( int i = 1; i < ( 1 << n ); ++i )
    {
        LL mult = 1;
        LL bits = 0;
        for( int j = 0; j < n; ++j )
        {
            if( ( 1 << j ) & i )
            {
                mult = lcm( mult, A[j] );
                bits++;
            }
        }
        if( bits & 1 )
            ans += m / mult;
        else
            ans -= m / mult;
    }
    printf( "%lld\n", ans );
}

void Orz()
{
    while( ~scanf( "%d %d", &n, &m ) )
    {
        for( int i = 0; i < n; ++i )
            scanf( "%d", &A[i] );
        solve();
    }
}
int main()
{
    Orz();
    return 0;
}
代码君

 

ZOJ 2836 Number Puzzle ( 容斥原理 )

标签:style   blog   http   io   color   ar   os   for   sp   

原文地址:http://www.cnblogs.com/BigBallon/p/4072487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!