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

POJ 1320

时间:2014-09-04 22:05:30      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:blog   os   io   for   div   sp   log   c   ios   

作弊了--!该题可以通过因式分解得到一个佩尔方程。。。。要不是学着这章,估计想不到。。

得到x1,y1后,就直接代入递推式递推了

 

x[n]=x[n-1]*x[1]+d*y[n-1]*y[1]

y[n]=x[n-1]*y[1]+y[n-1]*x[1]

 

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

int main(){
	int xt,yt,xx,yy;
	int x1=3,y1=1;
//	printf("%10d%10d\n",y1,(x1-1)/2);
	xt=x1; yt=y1;
	for(int i=1;i<=10;i++){
		xx=xt*3+8*yt;
		yy=xt+yt*3;
		printf("%10d%10d\n",yy,(xx-1)/2);
		xt=xx; yt=yy;
	}
	return 0;
}

  

POJ 1320

标签:blog   os   io   for   div   sp   log   c   ios   

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

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