码迷,mamicode.com
首页 > 其他好文 > 详细

同余方程

时间:2019-07-10 01:22:27      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:void   gate   turn   names   class   tps   inline   同余方程   printf   

[Time Gate]

https://www.luogu.org/problemnew/show/P1082

[解题思路】

推荐一个不错的写扩欧的博客

https://www.zybuluo.com/samzhang/note/541890

这是一道扩欧模板题

【code】

 1 #include <cstdio>
 2 #include <iostream>
 3 #include <algorithm>
 4 using namespace std;
 5 int a,b,res,ans,x,y; 
 6 inline void exEuclid_Algorithm(int a,int b,int &x,int &y){
 7     if(b!=0){
 8         exEuclid_Algorithm(b,a%b,y,x);
 9         y-=a/b*x;
10     }
11     else {
12         x=1;
13         y=0;
14         return ;
15     }
16 }
17 int main(){
18     //freopen("1082.in","r",stdin);
19     //freopen("1082.out","w",stdout);
20     scanf("%d%d",&a,&b);
21     /*while(res!=1){
22         ans++;
23         res=res+a;
24         if(res>b)res%=b;
25     }
26     printf("%lld\n",ans);*/
27     exEuclid_Algorithm(a,b,x,y);
28     printf("%d\n",(x%b+b)%b);
29     return 0;
30 }

 

同余方程

标签:void   gate   turn   names   class   tps   inline   同余方程   printf   

原文地址:https://www.cnblogs.com/66dzb/p/11161373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!