湖南大学第十四届ACM程序设计新生杯(重现赛)C:Sleepy Kaguya

编程入门 行业动态 更新时间:2024-10-24 14:16:26

湖南大学第十四届ACM<a href=https://www.elefans.com/category/jswz/34/1771020.html style=程序设计新生杯(重现赛)C:Sleepy Kaguya"/>

湖南大学第十四届ACM程序设计新生杯(重现赛)C:Sleepy Kaguya

链接:
来源:牛客网
 

题目描述

Houraisan☆Kaguya is the princess who lives in Literally House of Eternity. However, she is very playful and often stays up late. This morning, her tutor, Eirin Yagokoro was going to teach her some knowledge about the Fibonacci sequence. Unfortunately, the poor princess was so sleepy in class that she fell asleep. Angry Eirin asked her to complete the following task:

This sequence can be described by following equations:
    1.F[1]=F[2]=1

    2.F[n]=F[n-1]+F[n-2]  (n>2)

 

Now, Kaguya is required to calculate F[k+1]*F[k+1]-F[k]*F[k+2] for each integer k that does not exceed 10^18.

Kaguya is so pathetic. You have an obligation to help her.

 

(I love Houraisan Kaguya forever!!!)

image from pixiv,id=51208622

输入描述:

Input
Only one integer k.

输出描述:

Output
Only one integer as the result which is equal to F[k+1]*F[k+1]-F[k]*F[k+2].

示例1

输入

复制

2

输出

复制

1

说明

F[2]=1,F[3]=2,F[4]=32*2-1*3=1

备注:

0 < k ≤ 1^18If necessary, please use %I64d instead of %lld when you use "scanf", or just use "cin" to get the cases.The online judge of HNU has the above feature, thank you for your cooperation.

思路:直接计算超时,想着展开化简,超时,原来是找规律题,答案为    (-1)的n次方。

题解:

首先注意K的范围

F[n+1]*F[n+1]-F[n]*F[n+2]=(-1)2 1.n=1时,结论显然成立 2. 假设n=k时结论成立,即F[k+1]*F[k+1]-F[k]*F[k+2]=(-1)2 则 F[k+2]*F[k+2]=F[k+2]*F[k]+F[k+2]*F[k+1] =F[k+1]2-(-1)2+F[k+2]*F[k+1] =F[k+1]*(F[k+1]+F[k+2])+(-1)k+1 =F[k+1]*F[k+3]+(-1)k+1 故n=k+1时结论仍然成立
 

#include <iostream>
using namespace std;
int main()
{long long k;cin>>k;if(k&1){cout<<"-1"<<endl;}else{cout<<"1"<<endl;}return 0;
}

 

更多推荐

湖南大学第十四届ACM程序设计新生杯(重现赛)C:Sleepy Kaguya

本文发布于:2024-02-25 15:04:57,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1699372.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:程序设计   四届   湖南大学   新生   Kaguya

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!