博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【模板】矩阵加速(数列) 矩阵快速幂
阅读量:6587 次
发布时间:2019-06-24

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

题目描述

a[1]=a[2]=a[3]=1

a[x]=a[x-3]+a[x-1] (x>3)

求a数列的第n项对1000000007(10^9+7)取余的值。

输入输出格式

输入格式:

第一行一个整数T,表示询问个数。

以下T行,每行一个正整数n。

输出格式:

每行输出一个非负整数表示答案。

输入输出样例

输入样例#1:
36810
输出样例#1:
4919

说明

对于30%的数据 n<=100;

对于60%的数据 n<=2*10^7;

对于100%的数据 T<=100,n<=2*10^9;

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
//#include
//#pragma GCC optimize(2)using namespace std;#define maxn 200005#define inf 0x7fffffff//#define INF 1e18#define rdint(x) scanf("%d",&x)#define rdllt(x) scanf("%lld",&x)#define rdult(x) scanf("%lu",&x)#define rdlf(x) scanf("%lf",&x)#define rdstr(x) scanf("%s",x)#define mclr(x,a) memset((x),a,sizeof(x))typedef long long ll;typedef unsigned long long ull;typedef unsigned int U;#define ms(x) memset((x),0,sizeof(x))const long long int mod = 1e9 + 7;#define Mod 1000000000#define sq(x) (x)*(x)#define eps 1e-5typedef pair
pii;#define pi acos(-1.0)//const int N = 1005;#define REP(i,n) for(int i=0;i<(n);i++)typedef pair
pii;inline int rd() { int x = 0; char c = getchar(); bool f = false; while (!isdigit(c)) { if (c == '-') f = true; c = getchar(); } while (isdigit(c)) { x = (x << 1) + (x << 3) + (c ^ 48); c = getchar(); } return f ? -x : x;}ll gcd(ll a, ll b) { return b == 0 ? a : gcd(b, a%b);}int sqr(int x) { return x * x; }/*ll ans;ll exgcd(ll a, ll b, ll &x, ll &y) { if (!b) { x = 1; y = 0; return a; } ans = exgcd(b, a%b, x, y); ll t = x; x = y; y = t - a / b * y; return ans;}*/struct Mat { int a[5][5]; void init() { ms(a); for (int i = 0; i < 5; i++)a[i][i] = 1; }};Mat mul(Mat a, Mat b) { Mat ans; for (int i = 0; i < 5; i++) { for (int j = 0; j < 5; j++) { ans.a[i][j] = 0; for (int k = 0; k < 5; k++) { ans.a[i][j] = (ans.a[i][j] + a.a[i][k] % mod*b.a[k][j] % mod) % mod; ans.a[i][j] %= mod; } } } return ans;}Mat qpow(Mat a, int n) { Mat ans; ans.init(); while (n) { if (n & 1)ans = mul(ans, a); a = mul(a, a); n >>= 1; } return ans;}int main(){ // ios::sync_with_stdio(0); int T = rd(); while (T--) { int n = rd(); if (n == 1 || n == 2 || n == 3)cout << 1 << endl; else { Mat tmp; ms(tmp.a); tmp.a[0][0] = 1; tmp.a[0][2] = 1; tmp.a[1][0] = 1; tmp.a[2][1] = 1; tmp = qpow(tmp, n - 3); ll ans = (1ll * tmp.a[0][0] % mod + 1ll * tmp.a[0][1] % mod + 1ll * tmp.a[0][2] % mod) % mod; printf("%lld\n", ans%mod); } } return 0;}

 

转载于:https://www.cnblogs.com/zxyqzy/p/10373440.html

你可能感兴趣的文章
EF 5.0 帮助类
查看>>
微软BI 之SSIS 系列 - 通过设置 CheckPoints 检查点来增强 SSIS Package 流程的重用性...
查看>>
linux tomcat配置https
查看>>
1z0-052 q209_6
查看>>
TCP三次握手连接
查看>>
Spring.NET学习笔记——目录(原)
查看>>
Java回顾之Spring基础
查看>>
基本二叉搜索树的第K小元素
查看>>
产品需求文档写作方法(一)写前准备+梳理需求
查看>>
JAX-WS(三)构建简单webservice部署到tomcat上
查看>>
mac 设置 代理 上网 步骤 同时设置邮件代理
查看>>
ios 对日期的处理(包括计算昨天时间、明天时间)
查看>>
Java中的Set, List, Map漫谈
查看>>
JS图片自动或者手动滚动效果(支持left或者up)
查看>>
跟vczh看实例学编译原理——零:序言
查看>>
Spring帖子汇总
查看>>
Revit Family API 添加几何实体
查看>>
分享10个创新的扁平风格的简历页面设计
查看>>
elasticsearch 随笔
查看>>
SharePoint 2013 APP 开发示例 (二)获取用户信息
查看>>