标签:
Given the value of a+b and ab you will have to find the value of an+bn
The input file contains several lines of inputs. Each line except the last line contains 3 non-negative integers p, q and n. Here p denotes the value of a+b andq denotes the value of ab. Input is terminated by a line containing only two zeroes. This line should not be processed. Each number in the input file fits in a signed 32-bit integer. There will be no such input so that you have to find the value of 00.
For each line of input except the last one produce one line of output. This line contains the value of an+bn. You can always assume that an+bn fits in a signed 64-bit integer.
10 16 2 7 12 3 0 0 |
68 91
|
p |
1 |
-q |
0 |
#include<cstring>//用c++的输入就过了。 #include<cstdio> #include<iostream> using namespace std; #define LL long long struct matrix { LL mat[2][2]; }; matrix multiply(matrix a,matrix b) { matrix c; memset(c.mat,0,sizeof(c.mat)); for(int i=0;i<2;i++) { for(int j=0;j<2;j++) { if(a.mat[i][j]==0)continue; for(int k=0;k<2;k++) { if(b.mat[j][k]==0)continue; c.mat[i][k]+=a.mat[i][j]*b.mat[j][k]; } } } return c; } matrix quickmod(matrix a,LL m) { matrix res; for(int i=0;i<2;i++) for(int j=0;j<2;j++) res.mat[i][j]=(i==j); while(m) { if(m&1) res=multiply(res,a); m>>=1; a=multiply(a,a); } return res; } int main() { LL p,q,n; // while(scanf("%lld%lld%lld",&p,&q,&n),p+q+n) while(cin>>p>>q>>n) { // if(!n&&(!p||!q)) break; // scanf("%lld",&n); if(n==0)printf("2\n");//cout<<2<<endl;// else if(n==1)printf("%lld\n",p);// cout<<p<<endl;// else if(n==2) printf("%lld\n",p*p-2*q);//cout<<p*p-2*q<<endl;// else { //初始矩阵(p*p-2*q,p) matrix ans; ans.mat[0][0]=p; ans.mat[0][1]=1; ans.mat[1][0]=-q; ans.mat[1][1]=0; ans=quickmod(ans,n-1); LL ant=p*ans.mat[0][0]+2*ans.mat[1][0]; // cout<<ant<<endl; printf("%lld\n",ant); // printf("%lld\n",(p*ans.mat[0][0]+2*ans.mat[1][0])); } } return 0; }
Contemplation! Algebra(矩阵快速幂,uva10655)
标签:
原文地址:http://www.cnblogs.com/yuyixingkong/p/4339863.html