__gcd

来源:互联网 发布:众力网络安装电话 编辑:程序博客网 时间:2024/06/13 23:44

hdu 1576


要求(A/B)%9973,但由于A很大,我们只给出n(n=A%9973)(我们给定的A必能被B整除,且gcd(B,9973) = 1)。
Input
数据的第一行是一个T,表示有T组数据。 
每组数据有两个数n(0 <= n < 9973)和B(1 <= B <= 10^9)。
Output
对应每组数据输出(A/B)%9973。
Sample Input
21000 5387 123456789
Sample Output
79226060


#include <bits/stdc++.h>using namespace std;#define LL long long#define INF 1E4 * 1E9#define pi acos(-1)#define endl '\n'#define me(x) memset(x,0,sizeof(x));const int maxn=1e3+5;const int maxx=1e5+5;LL e_gcd(LL a,LL b,LL &x,LL &y){    if(b==0)    {        x=1;        y=0;        return a;    }    LL ans=e_gcd(b,a%b,x,y);    LL temp=x;    x=y;    y=temp-a/b*y;    return ans;}LL cal(LL a,LL b,LL c){    LL x,y;    LL gcd=e_gcd(a,b,x,y);    if(c%gcd!=0) return -1;    x*=c/gcd;//ax+by=c;   // cout<<x<<"            x"<<endl;    //cout<<b<<"            b"<<endl;   // cout<<gcd<<"              gcd"<<endl;    b/=gcd;    if(b<0) b=-b;    LL ans=x%b;//x0   // cout<<ans<<"            ans"<<endl;    if(ans<=0) ans+=b;//x通解 x0+b*t  最小的一个x    return ans;}int main(){    LL n,b,t;    cin>>t;    while(t--)    {        cin>>n>>b;        LL k=cal(b,9973,1);      //  cout<<k<<"            k"<<endl;        LL ans=(n*k)%(9973);        cout<<ans<<endl;    }}




poj 2142


Ms. Iyo Kiffa-Australis has a balance and only two kinds of weights to measure a dose of medicine. For example, to measure 200mg of aspirin using 300mg weights and 700mg weights, she can put one 700mg weight on the side of the medicine and three 300mg weights on the opposite side (Figure 1). Although she could put four 300mg weights on the medicine side and two 700mg weights on the other (Figure 2), she would not choose this solution because it is less convenient to use more weights. 
You are asked to help her by calculating how many weights are required. 

Input
The input is a sequence of datasets. A dataset is a line containing three positive integers a, b, and d separated by a space. The following relations hold: a != b, a <= 10000, b <= 10000, and d <= 50000. You may assume that it is possible to measure d mg using a combination of a mg and b mg weights. In other words, you need not consider "no solution" cases. 
The end of the input is indicated by a line containing three zeros separated by a space. It is not a dataset.
Output
The output should be composed of lines, each corresponding to an input dataset (a, b, d). An output line should contain two nonnegative integers x and y separated by a space. They should satisfy the following three conditions. 
  • You can measure dmg using x many amg weights and y many bmg weights. 
  • The total number of weights (x + y) is the smallest among those pairs of nonnegative integers satisfying the previous condition. 
  • The total mass of weights (ax + by) is the smallest among those pairs of nonnegative integers satisfying the previous two conditions.

No extra characters (e.g. extra spaces) should appear in the output.
Sample Input
700 300 200500 200 300500 200 500275 110 330275 110 385648 375 40023 1 100000 0 0
Sample Output
1 31 11 00 31 149 743333 1
#include<iostream>#include<cmath>using namespace std;void exgcd(int a,int b,int& g,int& x,int& y){  //int& a 是定义一个存放整形变量a的地址    if(!b){ g = a ; x = 1 ; y = 0;}                   // g用来存储gcd(a,b)的值    else { exgcd(b , a%b , g , y , x) ; y -= x * (a/b) ; }}void work(int a , int b , int d ,int& g , int& x , int& y){    exgcd(a,b,g,x,y);      //此处的x,y接收 ax+by=gcd(a,b)的值    x *= d/g;             //求ax+by=c 的解x//    y *= d/g;            //求ax+by=c 的解y    int t = b/g;    x = (x%t + t) % t;       //求出最小非负整数    y = abs( (a*x - d) / b);  //求相对应的y,取绝对值是为了当左边砝码数 x 为零的时候,得出来的 y 是正整数。/* //以下是先求y再求对应的x 。    int t = a/g;    y = (y%t + t) % t;    x = abs( (d + b*y) / a);*/}int main(){    int a,b,d,g,x1,x2,y1,y2;    while(cin>>a>>b>>d){        if(a==0&&b==0&&d==0)break;        work(a,b,d,g,x1,y1);        work(b,a,d,g,x2,y2);        if( x1+y1 < x2+y2 )            cout<<x1<<" "<<y1<<endl;        else            cout<<y2<<" "<<x2<<endl;   //(注意顺序)    }    return 0;}



0 0
原创粉丝点击