B. Jzzhu and Sequences1300 / 思维 规律

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B. Jzzhu and Sequences1300 / 思维 规律相关的知识,希望对你有一定的参考价值。


https://codeforces.com/contest/450/problem/B
找规律,发现6个为一组是一个循环节。

#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
const int N=1e5+10;
const int mod=1e9+7;
LL f[N];
int main(void)
{
	LL x,y,n; cin>>x>>y>>n;
	f[1]=(x+mod)%mod,f[2]=(y+mod)%mod;
	for(int i=3;i<=6;i++) f[i]=(f[i-1]-f[i-2]+mod)%mod;
	int cnt=n%6;
	if(cnt==0) cnt=6;
	cout<<f[cnt]<<endl;
	return 0;
}

以上是关于B. Jzzhu and Sequences1300 / 思维 规律的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #257 (Div. 2) B. Jzzhu and Sequences (矩阵快速幂)

Jzzhu and Sequences (矩阵快速幂 + 取模)

Codeforces 450B Jzzhu and Sequences

CodeForces 450B Jzzhu and Sequences

Codeforces Round 450 Div2 B.Jzzhu and Sequences

Codeforces 450B div.2 Jzzhu and Sequences 矩阵快速幂or规律