博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Number Sequence http://acm.hdu.edu.cn/showproblem.php?pid=1005
阅读量:5744 次
发布时间:2019-06-18

本文共 1398 字,大约阅读时间需要 4 分钟。

Number Sequence

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 83849    Accepted Submission(s): 19863

Problem Description
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).
 

 

Input
The input consists of multiple test cases. Each test case contains 3 integers A, B and n on a single line (1 <= A, B <= 1000, 1 <= n <= 100,000,000). Three zeros signal the end of input and this test case is not to be processed.
 

 

Output
For each test case, print the value of f(n) on a single line.
 

 

Sample Input
1 1 3 1 2 10 0 0 0
 

 

Sample Output
2 5
 

 

Author
CHEN, Shunbao
 

 

Source
 

 

Recommend
JGShining
#include
int main(){ int a,b,n; while(scanf("%d %d %d",&a,&b,&n)&&(a!=0|b!=0||n!=0)) { int k=3,f1=1,f2=1,f3; n=n%48; if(n==1||n==2) printf("%d\n",n); else { while(k<=n) { f3=(b*f1+a*f2)%7; f1=f2; f2=f3; k++; } printf("%d\n",f3); } } return 0; }

这题有意思的地方就是如果你直接用递归或循环求就会超时。经过百遍的观察,我们可以发现对7求余结果也就是0 1 2 3 4 5 6,所以应该是7*7个一循环,但是,结果是48个一循环,为什么会是48呢,我现在也不太清楚,我是先没做过处理,然后一个一个找的规律,得出48循环,谁知道为什么麻烦告诉我一声。

转载于:https://www.cnblogs.com/wangyouxuan/p/3264008.html

你可能感兴趣的文章
Linux文件系统探索
查看>>
标准与扩展ACL 、 命名ACL 、 总结和答疑
查看>>
查找恶意的TOR中继节点
查看>>
MAVEN 属性定义与使用
查看>>
hadoop2.7.2 HA搭建
查看>>
shell高级视频答学生while循环问题
查看>>
无法SSH到Ubuntu
查看>>
使用@media实现IE hack的方法
查看>>
《11招玩转网络安全》之第一招:Docker For Docker
查看>>
hive_0.11中文用户手册
查看>>
hiveserver2修改线程数
查看>>
XML教程
查看>>
oracle体系结构
查看>>
Microsoft Exchange Server 2010与Office 365混合部署升级到Exchange Server 2016混合部署汇总...
查看>>
Proxy服务器配置_Squid
查看>>
开启“无线网络”,提示:请启动windows零配置wzc服务
查看>>
【SDN】Openflow协议中对LLDP算法的理解--如何判断非OF区域的存在
查看>>
纯DIV+CSS简单实现Tab选项卡左右切换效果
查看>>
栈(一)
查看>>
姑娘你大胆地往前走——答大二学生XCL之八问
查看>>