ZOJ-2836 Number Puzzle

题意:给出N个数和M,求1到M的数中与给出的N个数有大于1的公共因子的数的个数。

思路:算是第一道容斥原理的题吧,1Y、^_^,神搜求最小公倍数奇数个相加、偶数个相减。

题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=2836

 

View Code
 1 #include <cstdio>
 2 #include <cmath>
 3 #include <cstdlib>
 4 #include <cstring>
 5 #include <string>
 6 #include <algorithm>
 7 #include <iostream>
 8 using namespace std;
 9 const int N=11;
10 
11 int n,m,sum;
12 int a[N];
13 
14 int gcd(int a,int b){
15     return b==0?a:gcd(b,a%b);
16 }
17 
18 void dfs(int val,int s,int k,int cnt){
19     if(cnt>k) return ;
20     if(cnt==k){
21         if(cnt%2) sum+=m/val;
22         else sum-=m/val;
23         return ;
24     }
25     for(int i=s+1;i<=n;i++){
26         dfs(val*a[i]/gcd(val,a[i]),i,k,cnt+1);
27     }
28 }
29 
30 int main(){
31     
32 //    freopen("data.in","r",stdin);
33 //    freopen("data.out","w",stdout);
34     
35     while(scanf("%d%d",&n,&m)!=EOF){
36         for(int i=1;i<=n;i++) scanf("%d",&a[i]);
37         sum=0;
38         for(int i=1;i<=n;i++){
39             dfs(1,0,i,0);
40         }
41         printf("%d\n",sum);
42     }
43 } 

转载于:https://www.cnblogs.com/Hug-Sea/articles/2710489.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值