首页 技术 正文
技术 2022年11月15日
0 收藏 743 点赞 4,471 浏览 1601 个字

http://poj.org/problem?id=3070

Description

In the Fibonacci integer sequence, F0 = 0, F1 = 1, and Fn = Fn − 1 + Fn − 2 for n ≥ 2. For example, the first ten terms of the Fibonacci sequence are:

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, …

An alternative formula for the Fibonacci sequence is

Fibonacci–poj3070(矩阵快速幂).

Given an integer n, your goal is to compute the last 4 digits of Fn.

Input

The input test file will contain multiple test cases. Each test case consists of a single line containing n (where 0 ≤ n ≤ 1,000,000,000). The end-of-file is denoted by a single line containing the number −1.

Output

For each test case, print the last four digits of Fn. If the last four digits of Fn are all zeros, print ‘0’; otherwise, omit any leading zeros (i.e., print Fn mod 10000).

Sample Input

0
9
999999999
1000000000
-1

Sample Output

0
34
626
6875

Hint

As a reminder, matrix multiplication is associative, and the product of two 2 × 2 matrices is given by

Fibonacci–poj3070(矩阵快速幂).

Also, note that raising any 2 × 2 matrix to the 0th power gives the identity matrix:

Fibonacci–poj3070(矩阵快速幂).

这道题就是快速幂http://blog.csdn.net/u013795055/article/details/38599321

还有矩阵相乘

#include <iostream>
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <math.h>
#include <stdlib.h>
#include <vector>
#include <queue>using namespace std;
#define memset(a,b) memset(a,b,sizeof(a))
#define N 4
#define INF 0xfffffff
struct node
{
int a[N][N];
}e;node mm(node p,node q)
{
node t;
for(int i=;i<;i++)
{
for(int j=;j<;j++)
{
t.a[i][j]=;
for(int k=;k<;k++)
{
t.a[i][j]=(t.a[i][j]+(p.a[i][k]*q.a[k][j]))%;
}
}
}
return t;
}node mul(node p,int n)
{ node q;
for(int i=;i<;i++)
{
for(int j=;j<;j++)
{
q.a[i][j]=(i==j);
}
}///这个是为了当n是奇数是第一次跟q相乘是还是原来的p,为了下一次跟下一奇数相乘
while(n)
{
if(n&)
q=mm(q,p);
n=n/;
p=mm(p,p);
}
return q;
}
int main()
{
int n;
while(scanf("%d",&n),n!=-)
{
e.a[][]=;
e.a[][]=;
e.a[][]=;
e.a[][]=;
node b=mul(e,n);
printf("%d\n",b.a[][]);
}
return ;
}
相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,115
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,587
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,433
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,204
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,840
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,925