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

POJ 2891

时间:2014-08-29 17:37:38      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:blog   os   io   for   数据   div   log   sp   amp   

线性同余方程组,模板了。但要注意读完数据才跳出循环啊

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

void exgcd(__int64 a,__int64 b,__int64 &d,__int64 &xx,__int64 &yy){
	if(b==0){
		xx=1;yy=0;d=a;
		return ;
	}
	else{
		exgcd(b,a%b,d,xx,yy);
		__int64 tmp=xx;
		xx=yy;
		yy=tmp-(a/b)*yy;
	}
}

int main(){
	__int64 n;
	__int64 a1,r1,a2,r2; __int64 d,xx,yy;
	bool ifhave;
	while(scanf("%I64d",&n)!=EOF){
		scanf("%I64d%I64d",&a1,&r1);
		ifhave=true;
		for(__int64 i=1;i<n;i++){
			scanf("%I64d%I64d",&a2,&r2);
			if(!ifhave) continue;
			__int64 a=a1,b=a2,c=r2-r1;
			exgcd(a,b,d,xx,yy);
			if(c%d!=0){
				ifhave=false;
			}
			__int64 t=b/d;
			xx=(xx*(c/d)%t+t)%t;
			r1=a1*xx+r1;
			a1=a1*(a2/d);
		}
		if(!ifhave){
			printf("-1\n");
		}
		else printf("%I64d\n",r1);
	}
	return 0;
}

  

POJ 2891

标签:blog   os   io   for   数据   div   log   sp   amp   

原文地址:http://www.cnblogs.com/jie-dcai/p/3945221.html

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