excrt——cf687b

Posted zsben991126

tags:

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

excrt的理解

问对于方程组x = ai % ci 的 通解 x+tM, (x+tM) % k 是否有唯一值 

看tm%k是否==0即可

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<queue>
#include<vector>
using namespace std;
const int maxn = 1e5+100;
typedef long long LL;
LL gcd(LL a,LL b)  return b==0 ? a:gcd(b,a%b);
LL lcm(LL a,LL b) return a/gcd(a,b)*b; 
int main()

    int n,k,a,i;
    scanf("%d%d",&n,&k);
    LL ans=1;
    for(i=1;i<=n;i++)
    
        scanf("%d",&a);
        ans=lcm(ans,a)%k;
    
    printf("%s\n",ans==0 ? "Yes":"No");

 

以上是关于excrt——cf687b的主要内容,如果未能解决你的问题,请参考以下文章

CodeForces 687B Remainders Game

扩展中国剩余定理 (exCRT) 的证明与练习

EXCRT(中国单身狗定理)

[复习]exCRT/exgcd

中国剩余定理(CRT) & 扩展中国剩余定理(ExCRT)总结

Crt and ExCrt