zoukankan      html  css  js  c++  java
  • CF-499div2-E-裴蜀定理

    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Astronaut Natasha arrived on Mars. She knows that the Martians are very poor aliens. To ensure a better life for the Mars citizens, their emperor decided to take tax from every tourist who visited the planet. Natasha is the inhabitant of Earth, therefore she had to pay the tax to enter the territory of Mars.

    There are nn banknote denominations on Mars: the value of ii-th banknote is aiai. Natasha has an infinite number of banknotes of each denomination.

    Martians have kk fingers on their hands, so they use a number system with base kk. In addition, the Martians consider the digit dd (in the number system with base kk) divine. Thus, if the last digit in Natasha's tax amount written in the number system with the base kk is dd, the Martians will be happy. Unfortunately, Natasha does not know the Martians' divine digit yet.

    Determine for which values dd Natasha can make the Martians happy.

    Natasha can use only her banknotes. Martians don't give her change.

    Input

    The first line contains two integers nn and kk (1n1000001≤n≤100000, 2k1000002≤k≤100000) — the number of denominations of banknotes and the base of the number system on Mars.

    The second line contains nn integers a1,a2,,ana1,a2,…,an (1ai1091≤ai≤109) — denominations of banknotes on Mars.

    All numbers are given in decimal notation.

    Output

    On the first line output the number of values dd for which Natasha can make the Martians happy.

    In the second line, output all these values in increasing order.

    Print all numbers in decimal notation.

    Examples
    input
    Copy
    2 8
    12 20
    output
    Copy
    2
    0 4
    input
    Copy
    3 10
    10 20 30
    output
    Copy
    1
    0
    Note

    Consider the first test case. It uses the octal number system.

    If you take one banknote with the value of 1212, you will get 148148 in octal system. The last digit is 4848.

    If you take one banknote with the value of 1212 and one banknote with the value of 2020, the total value will be 3232. In the octal system, it is 408408. The last digit is 0808.

    If you take two banknotes with the value of 2020, the total value will be 4040, this is 508508 in the octal system. The last digit is 0808.

    No other digits other than 0808 and 4848 can be obtained. Digits 0808 and 4848 could also be obtained in other ways.

    The second test case uses the decimal number system. The nominals of all banknotes end with zero, so Natasha can give the Martians only the amount whose decimal notation also ends with zero.

      给出n种钞票的面值(十进制下),每种钞票数量inf,问在k进制下能组合成的所有面额的最低位的数有哪些。

    这就等价于是  a1*x1+a2*x2+......+an*xn=g  ,g就是组合成的钞票面值,由裴蜀定理可知d=y*gcd(a1,a2,,,an),

    我们只要求出gcd(a1,a2,,,,,,an),然后把所有情况(y<k)扫一下就好了。

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 int gcd(int a,int b){return b==0?a:gcd(b,a%b);}
     4 set<long long >S;
     5 int main(){
     6     long long  a,n,k,i,j,g=0;
     7     cin>>n>>k;
     8     for(i=1;i<=n;++i){
     9         cin>>a;
    10         g=gcd(g,a);
    11     }
    12     for(i=0,j=0;j<=k;j++,i+=g) S.insert(i%k);
    13     cout<<S.size()<<endl;
    14     for(set<long long >::iterator it=S.begin();it!=S.end();++it){
    15         printf("%lld%c",*it,it==S.end()?'
    ':' ');
    16     }
    17     return 0;
    18 } 
  • 相关阅读:
    [levelDB] Version Manager
    [levelDB] Compaction
    <Effective Modern C++> 读书笔记
    <Effective Modern C++> 笔记-1-Deducing Type
    水塘抽样(Reservoir Sampling)问题
    【C++工程实践】条件变量
    【c++工程实践】内存模型
    【c++工程实践】智能指针
    【c++工程实践】值语义与右值引用
    分布式系统原理-CAP/2PC/3PC
  • 原文地址:https://www.cnblogs.com/zzqc/p/9375930.html
Copyright © 2011-2022 走看看