一、题目

二、题目链接

  http://codeforces.com/contest/920/problem/G

三、题意

  给定一个$t$,表示有t次查询。每次查询给定一个$x$, $p$, $k$,需要输出一个大于$x$、与$p$互质、第$k$大的数字。如样例1所示,比$7$大、与$22$互质、第$1$大的数字是$9$,第$2$大的数字是$13$,第$3$大的数字是$15$。

四、思路

  二分+容斥原理。

  二分一个数字$mid$,看看$[x+1,mid]$之间与$p$互质的数的个数。需要注意的是,如果个数是$k$,还要判断二分的$mid$是不是与$p$互质。如果是,说明要输出的值在$[x+1, mid)$之间,要需要继续做二分。(注意括号样式哦)

  统计$[x+1, mid]$之间与$p$互质的数的个数,方法是:把这个区间内$p$的素因子的倍数全部筛掉,剩余的就是与$p$互质的了。在筛的过程中,比如$p$是$12$,素因子是$2$、$3$,筛掉$2$的倍数的方法是:区间长度$len - (mid / 2 - x / 2)$。同理,筛掉$3$的倍数的方法也一样。但是,对于所有$6$的倍数,会被减两次,所以,需要再加一次。而这个过程,其实就是容斥原理。

  在这个题目中,利用容斥原理统计个数时,有两个写法:

    1、每次二分一个上界值$mid$,就枚举二进制;

    2、保存所有的询问,对每个询问的$p$,都预处理出它的所有素因子组合的乘积。然后,再枚举每一个询问,传入二分上界值$mid$时,枚举预处理的$p$的所有素因子组 合的乘积即可。(详细的写法可参考源代码)

  另外,还有一点,在做询问之前,需要预处理出$[1, 1e6]$区间内所有数字的素因子。

五、源代码

  1、写法一:每次二分一个上界值$mid$,就枚举二进制;

#pragma GCC optimize(2)
#pragma comment(linker, "/STACK:102400000, 102400000")
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
;

template <class T> inline void read(T &x) {
    int t;
    bool flag = false;
    ')) ;
    if(t == '-') flag = true, t = getchar();
    x = t - ';
     + t - ';
    if(flag) x = -x;
}

bool prime[MAXN];
vector<LL> d[MAXN];//d[i]:数字i的所有素因子

void init() {
    ;
    ; i <= N; ++i)d[i].clear(), prime[i] = true;
    ; i <= N; ++i) {
        if(prime[i]) {
            for(int j = i + i; j <= N; j += i)prime[j] = false;
        }
    }
    ; i <= N; ++i) {
        if(prime[i]) {
            for(int j = i; j <= N; j += i)d[j].push_back(LL(i));
        }
    }
}

/**[x+1, mid]**/
LL calc(LL x, LL p, LL mid) {
    LL res = mid - x;
    /*枚举二进制:
        如果i=5,二进制为0101,从低位数起,第0位和第2位为1,
        那么就取d[p]的第0个和第2个素因子,计算乘积,去做容斥操作。
        同时,需要统计取得素因子的个数。
        如果是奇数,那么,容斥操作中符号是+,否则是-。
    */
    , t =  << d[p].size(); i < t; ++i) {
        LL cnt = , prod = ;
        ; j > ; j >>= , ++k) {
            ) {
                cnt++;
                prod *= d[p][k];
            }
        }
        res -= (mid / prod - x / prod) * (cnt %  ==  ?  : -);
    }
    return res;
}

int main() {
#ifndef ONLINE_JUDGE
    freopen("Ginput.txt", "r", stdin);
#endif // ONLINE_JUDGE
    LL T, x, p, k, low, high, mid, ans = , tmp;
    init();
    read(T);
    while(T--) {
        read(x), read(p), read(k);
        low = x, high = 1LL << ;/*这个地方要特别注意,写大了就超时。*/
        ) {
            mid = (low + high) / ;
            tmp = calc(x, p, mid);
            if(tmp < k)low = mid;
            else if(tmp > k)high = mid;
            else {
                if(__gcd(mid, p) > 1LL)high = mid;
                else {
                    ans = mid;
                    break;
                }
            }
        }
        printf("%lld\n", ans);
    }
    ;
}

  2、保存所有的询问,对每个询问的$p$,都预处理出它的所有素因子组合的乘积。然后,再枚举每一个询问,传入二分上界值$mid$时,枚举预处理的$p$的所有素因子组 合的乘积;

#pragma GCC optimize(2)
#pragma comment(linker, "/STACK:102400000, 102400000")
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef tuple<LL, LL, LL> T3L;
typedef pair<LL, LL> P2L;
;

template <class T> inline void read(T &x) {
    int t;
    bool flag = false;
    ')) ;
    if(t == '-') flag = true, t = getchar();
    x = t - ';
     + t - ';
    if(flag) x = -x;
}

bool prime[MAXN];
vector<LL> d[MAXN];/*d[i]:数字i的素因子*/
vector<P2L> f[MAXN];/*f[i]:数字i的素因子组合的乘积和该组合的素因子个数*/
vector<T3L> qs;
void init() {
    ;
    qs.clear();
    ; i <= N; ++i)d[i].clear(), f[i].clear(), prime[i] = true;
    ; i <= N; ++i) {
        if(prime[i]) {
            for(int j = i + i; j <= N; j += i)prime[j] = false;
        }
    }
    ; i <= N; ++i) {
        if(prime[i]) {
            for(int j = i; j <= N; j += i)d[j].push_back(LL(i));
        }
    }
}

/**[x+1, mid]**/
LL calc(LL x, LL p, LL mid) {
    LL res = mid - x;
    ; i < f[p].size(); ++i) {/*直接枚举素因子组合的乘积*/
        LL prod = f[p][i].first, cnt = f[p][i].second;
        res -= (mid / prod - x / prod) * (cnt %  ==  ?  : -);
    }
    return res;
}

int main() {
#ifndef ONLINE_JUDGE
    freopen("Ginput.txt", "r", stdin);
#endif // ONLINE_JUDGE
    LL T, x, p, k, low, high, mid, ans = , tmp;
    init();
    read(T);
    ; i < T; ++i) {
        read(x), read(p), read(k);
        qs.push_back(make_tuple(x, p, k));/*保存所有询问*/
    }
    /*预处理每个询问的p的素因子组合的乘积、组合个数。
        写法同方法1。
    */
    ; t < T; ++t) {
        tmp = >(qs[t]);
        ) {
            , top =  << d[tmp].size(); i < top; ++i) {
                LL cnt = , prod = ;
                ; j > ; j >>= , ++k) {
                    ) {
                        cnt++;
                        prod *= d[tmp][k];
                    }
                }
                f[tmp].push_back(make_pair(prod, cnt));
            }
        }
    }
    ; t < T; ++t) {
        x = >(qs[t]), p = >(qs[t]), k = >(qs[t]);
        low = x, high = 1LL << ;/*这个地方要特别注意,写大了就超时。*/
        ) {
            mid = (low + high) / ;
            tmp = calc(x, p, mid);
            if(tmp < k)low = mid;
            else if(tmp > k)high = mid;
            else {
                if(__gcd(mid, p) > 1LL)high = mid;
                else {
                    ans = mid;
                    break;
                }
            }
        }
        printf("%lld\n", ans);
    }
    ;
}

Educational Codeforces Round 37-G.List Of Integers题解的更多相关文章

  1. Educational Codeforces Round 37 G. List Of Integers (二分,容斥定律,数论)

    G. List Of Integers time limit per test 5 seconds memory limit per test 256 megabytes input standard ...

  2. Educational Codeforces Round 37

    Educational Codeforces Round 37 这场有点炸,题目比较水,但只做了3题QAQ.还是实力不够啊! 写下题解算了--(写的比较粗糙,细节或者bug可以私聊2333) A. W ...

  3. Educational Codeforces Round 37 (Rated for Div. 2)C. Swap Adjacent Elements (思维,前缀和)

    Educational Codeforces Round 37 (Rated for Div. 2)C. Swap Adjacent Elements time limit per test 1 se ...

  4. Educational Codeforces Round 63 (Rated for Div. 2) 题解

    Educational Codeforces Round 63 (Rated for Div. 2)题解 题目链接 A. Reverse a Substring 给出一个字符串,现在可以对这个字符串进 ...

  5. Educational Codeforces Round 65 (Rated for Div. 2)题解

    Educational Codeforces Round 65 (Rated for Div. 2)题解 题目链接 A. Telephone Number 水题,代码如下: Code #include ...

  6. Educational Codeforces Round 64 (Rated for Div. 2)题解

    Educational Codeforces Round 64 (Rated for Div. 2)题解 题目链接 A. Inscribed Figures 水题,但是坑了很多人.需要注意以下就是正方 ...

  7. Educational Codeforces Round 58 (Rated for Div. 2) 题解

    Educational Codeforces Round 58 (Rated for Div. 2)  题目总链接:https://codeforces.com/contest/1101 A. Min ...

  8. Educational Codeforces Round 60 (Rated for Div. 2) 题解

    Educational Codeforces Round 60 (Rated for Div. 2) 题目链接:https://codeforces.com/contest/1117 A. Best ...

  9. Educational Codeforces Round 37 (Rated for Div. 2) G

    G. List Of Integers time limit per test 5 seconds memory limit per test 256 megabytes input standard ...

  10. codeforces 920 EFG 题解合集 ( Educational Codeforces Round 37 )

    E. Connected Components? time limit per test 2 seconds memory limit per test 256 megabytes input sta ...

随机推荐

  1. BZOJ4811 [Ynoi2017]由乃的OJ

    本文版权归ljh2000和博客园共有,欢迎转载,但须保留此声明,并给出原文链接,谢谢合作. 本文作者:ljh2000 作者博客:http://www.cnblogs.com/ljh2000-jump/ ...

  2. js 判断浏览器类型及版本

    1.思路: 能力检测 + 字符串检索 2.例子 IE    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0)      ActiveXObject函 ...

  3. Leetcode 23.Merge Two Sorted Lists Merge K Sorted Lists

    Merge Two Sorted Lists Merge two sorted linked lists and return it as a new list. The new list shoul ...

  4. wepy绘制雷达图

    代码如下: <style lang='less'> .radar-canvas2 { width: 690rpx; height: 420rpx; } </style> < ...

  5. gson-2.2.api简单

    使用gson的tojson和fromjson实现对象和json的转换 Gson gson = new Gson(); // Or use new GsonBuilder().create();     ...

  6. QT Creator快捷键不能用

    我现在搞明白了,热键之所以不行,是因为我开了Fakevim原因.关了fakevim就能用热键了. 如果开了Fakevim,连基本的Ctrl+C,这样的复制快捷键都不能用. 快速添加方法实体(.cpp) ...

  7. Vim技能修炼教程(17) - 编译自己的Vim

    编译自己的Vim 前面我们已经对Vim有比较丰富的了解了.我们也知道Vim有很多编译时的选项,很多功能依赖于这些编译选项.其中最重要的就是脚本语言的支持,很多发行版本是不全的.为了支持我们所需要的功能 ...

  8. Yii用AJAX注册验证

    <script type="text/javascript"> $(document).ready(function(){ $('#RegisterForm_usern ...

  9. HDU3335 Divisibility Dilworth定理+最小路径覆盖

    首先需要一些概念: 有向图,最小路径覆盖,最大独立集,Dilworth,偏序集,跳舞链(DLX).... 理解一: 对于DAG图,有:最大独立集=点-二分匹配数,二分匹配数=最小路径覆盖. 而无向图, ...

  10. 如何在idea中使用Mybatis-generator插件快速生成代码

    传送门 使用这个插件可以快速生成一些代码,包含 实体类/Mapper接口/*Mapper.xml文件 首先,我们需要搭建一个Maven的项目. 在pom.xml中添加代码 <plugins> ...