Codeforces 920G - List Of Integers

Posted Wisdom+.+

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 920G - List Of Integers相关的知识,希望对你有一定的参考价值。

920G - List Of Integers

思路:容斥+二分

代码:

#include<bits/stdc++.h>
using namespace std;
#define ll long long 
#define pb push_back
#define mem(a,b) memset(a,b,sizeof(a))

vector<int>p;
ll ans=0;
void dfs(int k,int cnt,ll s,ll r){
    if(k==p.size()){
        if(cnt&1)ans-=r/s;
        else ans+=r/s;
        return ; 
    }
    dfs(k+1,cnt,s,r);
    dfs(k+1,cnt+1,s*p[k],r);
}
void init(ll n){
    p.clear();
    for(ll i=2;i*i<=n;i++){
        if(n%i==0){
            p.pb(i);
            while(n%i==0)n/=i;
        }
    }
    if(n>1)p.pb(n);
}
ll count(ll r){
    ans=0;
    dfs(0,0,1,r);
    return ans;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int T;
    int x,p,k;
    cin>>T;
    while(T--){
        cin>>x>>p>>k;
        init(p);
        ll t=count(x);
        ll l=x,r=1e18,m=(l+r)>>1;
        while(l<r){
            if(count(m)-t>=k)r=m;
            else l=m+1;
            m=(l+r)>>1;
        }
        cout<<m<<endl;
    }
    return 0;
} 

 

以上是关于Codeforces 920G - List Of Integers的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces 920G(二分+容斥)

codeforces 851D Arpa and a list of numbers

Codeforces 851D Arpa and a list of numbers

Codeforces Gym 101190 NEERC 16 .L List of Primes(递归)

Codeforces Round #593 (Div. 2) B. Alice and the List of Presents

Codeforces Round #432 (Div. 2) D. Arpa and a list of numbers(暴力)