记录编号 375826 评测结果 AAAAAAAAAA
题目名称 拆分游戏 最终得分 100
用户昵称 GravatarFoolMike 是否通过 通过
代码语言 C++ 运行时间 0.003 s
提交时间 2017-02-25 22:56:25 内存使用 0.29 MiB
显示代码纯文本
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
typedef long long ll;
const int p=1e9+7,sqrt2=59713600;
const ll move[3][3]={{3,2*sqrt2,0},{2*sqrt2,3,0},{-1,-sqrt2,1}};
struct matrix{
	ll a[3][3];
	matrix(){memset(a,0,sizeof a);}
	void operator *= (const matrix x){
		ll ans[3][3]={0};
		for (int i=0;i<3;i++)
		for (int j=0;j<3;j++)
		for (int k=0;k<3;k++)
			(ans[i][j]+=a[i][k]*x.a[k][j])%=p;
		memcpy(a,ans,sizeof a);
	}
}ans,x;
ll n;
matrix mi(matrix x,ll y){
	matrix ans=x;y--;
	for (;y;y>>=1,x*=x)
		if (y&1) ans*=x;
	return ans;
}
int main()
{
	freopen("resolution.in","r",stdin);
	freopen("resolution.out","w",stdout);
	scanf("%lld",&n);
	if (!n) puts("1"),exit(0);
	memcpy(x.a,move,sizeof move);
	ans.a[0][0]=ans.a[0][2]=1;
	ans*=mi(x,n);
	printf("%lld\n",(ans.a[0][0]%p+p)%p);
	return 0;
}