HDU 1005
程序员文章站
2024-03-17 08:39:28
...
题目描述:
题目看起来很像斐波那契数列那种,但是仔细看实现还是不同的,使用递归的话有一定不便,题目很简单。
AC代码如下:
/*
A number sequence is defined as follows:
f(1) = 1, f(2) = 1, f(n) = (A * f(n - 1) + B * f(n - 2)) mod 7.
Given A, B, and n, you are to calculate the value of f(n).
*/
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
int A,B,n;
int f[1000];
while(cin>>A>>B>>n){
if(A==0&&B==0&&n==0)
break;
if(n==1 || n==2){
cout<<"1"<<endl;
continue;
}
f[1]=f[2]=1;
for(int i=3;i<=n%49;i++){
f[i]=(A*f[i-1]+B*f[i-2])%7;
}
cout<<f[n%49]<<endl;
}
return 0;
}
/*
1 1 3
1 2 10
0 0 0
*/