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

ZOJ 3233 Lucky Number 容斥

时间:2014-11-07 20:53:02      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:blog   io   sp   for   on   2014   log   bs   html   

给你a数组和b数组 求x到y之间有多少个数至少被a中一个数整除并且至少不被b中一个数整除

容斥第一问很简单 第二问可以考虑反面

设满足被a中至少一个数整除的数有sum1个 

在被a中至少一个数整除的前提下 被b中所有数整除的数有sum2

答案就是sum1-sum2

在dfs的时候溢出了 借鉴了某大牛的方法

#include <cstdio>
#include <cstring>
using namespace std;
typedef long long LL;
const int maxn = 510;
LL a[maxn], b[maxn];
LL n, m, X, Y, l;
LL gcd(LL a, LL b)
{
	return b ? gcd(b, a%b) : a;
}
LL lcm(LL a, LL b) 
{
    LL g;
    g = gcd(a, b);
    if (a / g > Y / b)
        return Y + 1;
    return a / g * b;
}
void dfs(int i, LL x, int k, LL n, LL& ans1, LL& ans2)
{
	if(i == -1)
	{
		if(!k)
			return;
		LL y = lcm(x, l);
		if(k&1)
		{
			ans1 += n/x;
			ans2 += n/y;
		}
		else
		{
			ans1 -= n/x;
			ans2 -= n/y;
		}
		return;
	}
	dfs(i-1, x, k, n, ans1, ans2);
	dfs(i-1, lcm(x, a[i]), k+1, n, ans1, ans2);
}
LL cal(LL x)
{
	LL ans1 = 0;
	LL ans2 = 0;
	dfs(n-1, 1, 0, x, ans1, ans2);
	return ans1-ans2;
}
int main()
{
	
	while(scanf("%lld %lld %lld %lld", &n, &m, &X, &Y) != EOF)
	{
		if(!n && !m && !X && !Y)
			break;
		for(int i = 0; i < n; i++)
			scanf("%lld", &a[i]);
		for(int i = 0; i < m; i++)
			scanf("%lld", &b[i]);
		l = 1;
		for(int i = 0; i < m; i++)
			l = lcm(b[i], l);
		a[n] = l;

		LL ans = cal(Y)-cal(X-1);	
		printf("%lld\n", ans);
	}
	return 0;
}


ZOJ 3233 Lucky Number 容斥

标签:blog   io   sp   for   on   2014   log   bs   html   

原文地址:http://blog.csdn.net/u011686226/article/details/40897713

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