HDU 1796 How many integers can you find

How many integers can you find

Time Limit: 12000/5000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)

Problem Description

Now you get a number N, and a M-integers set, you should find out how many integers which are small than N, that they can divided exactly by any integers in the set. For example, N=12, and M-integer set is {2,3}, so there is another set {2,3,4,6,8,9,10}, all the integers of the set can be divided exactly by 2 or 3. As a result, you just output the number 7.

Input

There are a lot of cases. For each case, the first line contains two integers N and M. The follow line contains the M integers, and all of them are different from each other. 0<N<2^31,0<M<=10, and the M integer are non-negative and won’t exceed 20.

Output

For each case, output the number.

Sample Input

12 2
2 3

Sample Output

7

思路:

题目要求求出在1-n中有多少个数字可以被后面的ai整除,这样的话就可以用容斥定理,所以就有整除一个的减去整除两个的加上整除三个等等,所以可以用dfs,也可以用二进制的方法,二进制就是枚举出全部的情况,状态中有1的说明这个整除这个ai,有多少个整除多少个,然后根据整除的个数判断时加还是减。

#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
int gcd(int a, int b) {
    if (b == 0) return a;
    else return gcd(b, a % b);
}
int lcm(int a, int b) {
    return a / gcd(a, b) * b;
}
int main() {
    ios::sync_with_stdio(false);
    int n, m;
    int a[20];
    while (scanf("%d %d", &n, &m) != EOF) {
        int k = 0, x;
        while (m--) {
            scanf("%d", &x);
            if (x) a[k++] = x;
        }
        int ans = 0;
        for (int i = 1; i < 1 << k; i++) {
            int lc = 0, cnt = 0;
            for (int j = 0; j < k; j++) {
                if (i >> j & 1) {
                    cnt++;
                    if (lc == 0) lc = a[j];
                    else lc = lcm(lc, a[j]);
                }
            }
            if (cnt & 1) ans += (n - 1) / lc;
            else ans -= (n - 1) / lc;
        }
        printf("%d\n", ans);
    }
    return 0;
}

全部评论

相关推荐

头像
10-22 20:13
中南大学 Java
序言大家好呀。我是希晨er,一个初入职场的程序猿小登最近上班摸鱼刷到了一篇文章:10年深漂,放弃高薪,回长沙一年有感,还有聊聊30岁大龄程序员过往的心路历程,突然就有点感慨。我如今也做出了和大明哥一样的抉择,只是更早。此外我22年的人生,好像从来没好好记录过。正好现在工作不太忙,就想把这些经历写下来,也希望能得到社区里各位前辈的指点个人背景我是03年出生的西安娃,父母都是普通打工人。刚从中南大学软件工程专业毕业半年,现在在老家的央企过着躺平摆烂的日子成长轨迹从农村到城市的童年我家并不是西安的,只是爸妈在西安上班,从小学之后就把我接到了西安。后来老家房子拆了,爷爷奶奶也搬了过来。农村的生活,我觉...
Yki_:看哭了,恋爱那一段你女朋友说你不够关心她,可你毕竟也愿意遇到矛盾写几千字来和她慢慢分析;说不愿意给她花钱,我感觉可能只是消费观不一样;如果她想留在长沙,也应该提前跟你说开。不过她也许会心疼你放弃大厂offer转向数字马力?我也因为同样的原因有过一段幸福而充满遗憾的感情,不过跟爱情相比确实前途更重要一点。至于offer的选择,换我我也会这么选。把这些旧事记录下来以后,接下来就好好向前看吧,加油兄弟
🍊晨光随笔
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务