首页 > 代码库 > poj1006 ( hdu1370 ):中国剩余定理裸题
poj1006 ( hdu1370 ):中国剩余定理裸题
裸题,没什么好说的
第一个中国剩余定理
写暴力都过了。。可见这题有多水
代码:
#include<iostream>#include<stdio.h>#include<math.h>#include<string>#include<map>#include<algorithm>using namespace std;#define MAX 200000000#define ull unsigned long longconst int MAXN = 100011;int a[3];int m[3]={23,28,33};int exgcd(int a,int b,int &x,int &y){ if(b==0) { x=1;y=0; return a; } int r=exgcd(b,a%b,x,y); int t=x; x=y; y=(t-a/b*y); return r;}int china(int n){ int M=1; int ans=0; int x,y,d; for(int i=0;i<n;i++) { M*=m[i]; } for(int i=0;i<n;i++) { int mi=M/m[i]; int x,y; d=exgcd(mi,m[i],x,y); ans=(ans+a[i]*mi*x)%M; } while(ans<0) ans+=M; return ans;} int main() { int t; scanf("%d",&t); while(t--) { getchar(); int p,e,d,n,x,f; int tt=0; int ans=21252; while(scanf("%d%d%d%d",&a[0],&a[1],&a[2],&d)&&(a[0]!=-1||a[1]!=-1||a[2]!=-1||d!=-1)) { tt++; ans=china(3); while(ans<=d) ans+=21252; printf("Case %d: the next triple peak occurs in %d days.\n",tt,ans-d); } while(t) printf("\n"); } return 0;}
poj1006 ( hdu1370 ):中国剩余定理裸题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。