• Romantic(裸扩展欧几里德)


    Romantic

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 3944    Accepted Submission(s): 1638


    Problem 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
     题解:
    等式已经说了,因为x无符号;所以x就只能是正数;下面是无符号的定义:
    /*****************************************************/
    计算机里的数是用二进制表示的,最左边的这一位一般用来表示这个
    数是正数还是负数,这样的话这个数就是有符号整数。如果最左边这
    一位不用来表示正负,而是和后面的连在一起表示整数,那么就不能
    区分这个数是正还是负,就只能是正数,这就是无符号整数。
    /****************************************************/
    找到x,就得到y了;
    代码:
     1 #include<iostream>
     2 #include<algorithm>
     3 #include<cstdio>
     4 #include<cstring>
     5 #include<cmath>
     6 #include<vector>
     7 #define mem(x,y) memset(x,y,sizeof(x))
     8 using namespace std;
     9 typedef long long LL;
    10 const int INF=0x3f3f3f3f;
    11 /*
    12 计算机里的数是用二进制表示的,最左边的这一位一般用来表示这个
    13 数是正数还是负数,这样的话这个数就是有符号整数。如果最左边这
    14 一位不用来表示正负,而是和后面的连在一起表示整数,那么就不能
    15 区分这个数是正还是负,就只能是正数,这就是无符号整数。
    16 */
    17 void e_gcd(LL a,LL b,LL &d,LL &x,LL &y){
    18     if(!b){
    19         d=a;
    20         x=1;
    21         y=0;
    22     }
    23     else{
    24         e_gcd(b,a%b,d,x,y);//写成a&b了。。。错了半天 
    25         LL temp=x;
    26         x=y;
    27         y=temp-a/b*y;
    28     }
    29 }
    30 void cal(LL a,LL b,LL c){
    31     LL x,y,d;
    32     e_gcd(a,b,d,x,y);
    33 //    printf("%lld %lld %lld 
    ",d,x,y);
    34     if(c%d!=0){
    35         puts("sorry");
    36         return;
    37     }
    38     x*=c/d;//c,d都是1,可以省略;
    39     //x=x0+b/d*t;
    40     b/=d;//这个要记清。。。。。 
    41     if(b<0)b=-b;
    42     LL ans=x%b;
    43     if(ans<=0)ans+=b;//写成<=b了,又错半天。。。 
    44     printf("%lld %lld
    ",ans,(1-ans*a)/b); 
    45 }
    46 int main(){
    47     LL a,b;
    48     while(~scanf("%lld%lld",&a,&b)){
    49         cal(a,b,1);
    50     }
    51     return 0;
    52 }
  • 相关阅读:
    Python 判断所有文件或文件夹
    Ubuntu显卡GPU 驱动的安装
    新系统ubuntu 需要配置项目 安装 cudnn 修改pip国内源
    Ubuntu下设置DNS的方法 和国内公共DNS汇总
    学习vue ,环境搭建(VS code、node.js、cnpm、vue-cli)创建项目 并引入element
    mybatis mysql count(*) 返回结果为null的解决
    使用V2Ry和V2RyN搭建本地代理服务器供局域网用户连接
    类似samba raidrive
    shell if判断语句 报错:syntax error near unexpected token `elif'
    stat()返回失败Invalid parameter
  • 原文地址:https://www.cnblogs.com/handsomecui/p/4908645.html
Copyright © 2020-2023  润新知