hdu 2855
摘要:
题解: 知识储备:1.(1+x)^n= 2.斐波那契数列可以用矩阵来表示:mat={1,1,1,0},| 1 1|对应 | f(x+2) f(x+1)| x可以换为mat,而1就是单位矩阵; | 1 0| | f(x+1) f(x) |#include<stdio.h>int n,ma;struct Matrix{ int m[2][2];};Matrix mat,unit;void Initiate(){ mat.m[0][0]=2;//(1+x)的矩阵运算 mat.m[0][1]... 阅读全文
posted @ 2013-05-23 21:05 雨钝风轻 阅读(172) 评论(0) 推荐(0) 编辑