zoukankan      html  css  js  c++  java
  • HDU 2669 第六周 I题

    Description

    The Sky is Sprite.  The Birds is Fly in the Sky.  The Wind is Wonderful.  Blew Throw the Trees  Trees are Shaking, Leaves are Falling.  Lovers Walk passing, and so are You.  ................................Write in English class by yifenfei 

    Girls are clever and bright. In HDU every girl like math. Every girl like to solve math problem!  Now tell you two nonnegative integer a and b. Find the nonnegative integer X and integer Y to satisfy X*a + Y*b = 1. If no such answer print "sorry" instead. 
     

    Input

    The input contains multiple test cases.  Each case two nonnegative integer a,b (0<a, b<=2^31) 
     

    Output

    output nonnegative integer X and integer Y, if there are more answers than the X smaller one will be choosed. If no answer put "sorry" instead. 
     

    Sample Input

    77 51
    10 44
    34 79
     

    Sample Output

    2 -3
    sorry
    7 -3
     
     
    题意:给你a和b,叫你求ax+by=1的x和y,要求是x为正整数,y为整数...   有就输出,没有就输出sorry。
     
     
    题解:这里用到了扩展欧几里德算法。先用扩展欧几里德算法求出x,y然后再判断x是否大于0,如果小于0,则通过循环+b,直到x>0,在输出答案
     
    这里给出两种代码,一种是书上的扩展欧几里德程序,一种是网上的(他们说是模板).....
     
     
     
    代码如下:(最后打注释的主函数是开始自己打的,但是没有考虑x小于0的时候,所以wa了)
     
     
     1 #include <stdio.h>
     2 void gcd(int a,int b,int &d,int &x,int &y)
     3 {
     4     if(!b)
     5     {
     6         d=a;
     7         x=1;
     8         y=0;
     9     }
    10     else
    11     {
    12         gcd(b,a%b,d,y,x);
    13         //printf("a=%d  b=%d  d=%d  y=%d  x=%d
    ",a,b,d,y,x);
    14         y-=x*(a/b);
    15         //printf("y=-%d*(%d/%d)  %d 
    ",x,a,b,y);
    16     }
    17 }
    18 
    19 int main()
    20 {
    21     int a,b,d,x,y;
    22     while(scanf("%d%d",&a,&b)==2)
    23     {
    24         gcd(a,b,d,x,y);
    25         if(d==1)         //d=gcd(a,b),d为a,b的最大公约数。
    26         {
    27             if(x>0)
    28                 printf("%d %d
    ",x,y);
    29             else
    30             {
    31                 while(x<=0)    //求另外的解   例如:5x+6y=1  第一种解:x=-1,y=1  第二种 x=5  y=-4
    32                 {              //                 这里通过x=x+b和y=y-a来算。   就等于    (x+b)*a+(y-a)*b    最终算式结果还是不变的
    33                     x+=b;
    34                     y-=a;
    35                 }
    36                 printf("%d %d
    ",x,y);
    37             }
    38         }
    39         else
    40             printf("sorry
    ");
    41     }
    42     return 0;
    43 }
    44 /*int main()
    45 {
    46     int a,b,d,x,y;
    47     while(scanf("%d%d",&a,&b)==2)
    48     {
    49         gcd(a,b,d,x,y);
    50         //printf("%d %d  %d
    ",x,y,d);
    51         if(x%d==0&&y%d==0&&x/d>0)
    52             printf("%d %d
    ",x/d,y/d);
    53         else
    54             printf("sorry
    ");
    55     }
    56     return 0;
    57 }*/

    网上的:

     1 #include<cstdio>
     2 using namespace std;
     3 int exgcd(int a,int b,int &x,int &y)
     4 {
     5     if(b==0)
     6     {
     7         x=1;
     8         y=0;
     9         return a;
    10     }
    11     int  r=exgcd(b,a%b,x,y);
    12     //printf("a=%d b=%d
    ",a,b);
    13     int t=x;
    14     //printf("t=%d
    ",x);
    15     x=y;
    16     //printf("x=%d
    ",y);
    17     y=t-a/b*y;
    18     //printf("y=%d
    ",y);
    19     return r;
    20 }
    21 int main()
    22 {
    23     int a,b,x,y,m;
    24     while(scanf("%d%d",&a,&b)!=EOF)
    25     {
    26 
    27         m=exgcd(a,b,x,y);
    28         if(m==1)
    29         {
    30             while(x<0)
    31             {
    32                 x+=b;
    33                 y-=a;
    34             }
    35             printf("%d %d
    ",x,y);
    36         }
    37 
    38         else
    39             printf("sorry
    ");
    40     }
    41     return 0;
    42 }
     
  • 相关阅读:
    mysql 添加自增长ID(序列方式)
    获取本地IP地址信息
    Intellij 快捷键
    java转换汉字为首字母搜索,
    gitee在linux下自动备份
    七牛云续费dns的ssl证书
    shiro 的realm的授权
    realme的shiro简单实现方法
    shiro初探,最简单的认证,通过ini文件。
    git config file
  • 原文地址:https://www.cnblogs.com/huangguodong/p/4741443.html
Copyright © 2011-2022 走看看