E - Recursive sequence HDU - 5950 (矩阵快速幂)
题目链接:https://vjudge.net/problem/HDU-5950
思路: 构造矩阵,然后利用矩阵快速幂。

1 #include <bits/stdc++.h>
2 #include <time.h>
3 #include <set>
4 #include <map>
5 #include <stack>
6 #include <cmath>
7 #include <queue>
8 #include <cstdio>
9 #include <string>
10 #include <vector>
11 #include <cstring>
12 #include <utility>
13 #include <cstring>
14 #include <iostream>
15 #include <algorithm>
16 #include <list>
17 using namespace std;
18 //cout<<setprecision(10)<<fixed;
19 #define eps 1e-6
20 #define PI acos(-1.0)
21 #define lowbit(x) ((x)&(-x))
22 #define zero(x) (((x)>0?(x):-(x))<eps)
23 #define mem(s,n) memset(s,n,sizeof s);
24 #define rep(i,a,b) for(int i=a;i<=b;i++)
25 #define rep2(i,a,b) for(int i=a;i>=b;i--)
26 #define ios {ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);}
27 typedef long long ll;
28 typedef unsigned long long ull;
29 const int maxn=1e6+5;
30 const ll Inf=0x7f7f7f7f7f7f7f7f;
31 const ll mod=2147493647;
32 //const int N=3e3+5;
33 bool isPowerOfTwo(int n) { return n > 0 && (n & (n - 1)) == 0; }//判断一个数是不是 2 的正整数次幂
34 int modPowerOfTwo(int x, int mod) { return x & (mod - 1); }//对 2 的非负整数次幂取模
35 int getBit(int a, int b) { return (a >> b) & 1; }// 获取 a 的第 b 位,最低位编号为 0
36 int Max(int a, int b) { return b & ((a - b) >> 31) | a & (~(a - b) >> 31); }// 如果 a>=b,(a-b)>>31 为 0,否则为 -1
37 int Min(int a, int b) { return a & ((a - b) >> 31) | b & (~(a - b) >> 31); }
38 ll gcd(ll a, ll b) {return b ? gcd(b, a % b) : a;}
39 ll lcm(ll a, ll b) {return a / gcd(a, b) * b;}
40 inline int read()
41 {
42 int X=0; bool flag=1; char ch=getchar();
43 while(ch<'0'||ch>'9') {if(ch=='-') flag=0; ch=getchar();}
44 while(ch>='0'&&ch<='9') {X=(X<<1)+(X<<3)+ch-'0'; ch=getchar();}
45 if(flag) return X;
46 return ~(X-1);
47 }
48 inline void write(int X)
49 {
50 if(X<0) {X=~(X-1); putchar('-');}
51 if(X>9) write(X/10);
52 putchar(X%10+'0');
53 }
54 /*
55 inline int write(int X)
56 {
57 if(X<0) {putchar('-'); X=~(X-1);}
58 int s[20],top=0;
59 while(X) {s[++top]=X%10; X/=10;}
60 if(!top) s[++top]=0;
61 while(top) putchar(s[top--]+'0');
62 }
63 */
64 void scan(__int128 &x)//输入
65 {
66 x = 0;
67 int f = 1;
68 char ch;
69 if((ch = getchar()) == '-') f = -f;
70 else x = x*10 + ch-'0';
71 while((ch = getchar()) >= '0' && ch <= '9')
72 x = x*10 + ch-'0';
73 x *= f;
74 }
75 void _print(__int128 x)
76 {
77 if(x > 9) _print(x/10);
78 putchar(x%10 + '0');
79 }
80 int Abs(int n) {
81 return (n ^ (n >> 31)) - (n >> 31);
82 /* n>>31 取得 n 的符号,若 n 为正数,n>>31 等于 0,若 n 为负数,n>>31 等于 -1
83 若 n 为正数 n^0=n, 数不变,若 n 为负数有 n^(-1)
84 需要计算 n 和 -1 的补码,然后进行异或运算,
85 结果 n 变号并且为 n 的绝对值减 1,再减去 -1 就是绝对值 */
86 }
87 ll binpow(ll a, ll b) {
88 ll res = 1;
89 while (b > 0) {
90 if (b & 1) res = res * a%mod;
91 a = a * a%mod;
92 b >>= 1;
93 }
94 return res%mod;
95 }
96 void extend_gcd(ll a,ll b,ll &x,ll &y)
97 {
98 if(b==0) {
99 x=1,y=0;
100 return;
101 }
102 extend_gcd(b,a%b,x,y);
103 ll tmp=x;
104 x=y;
105 y=tmp-(a/b)*y;
106 }
107 ll mod_inverse(ll a,ll m)
108 {
109 ll x,y;
110 extend_gcd(a,m,x,y);
111 return (m+x%m)%m;
112 }
113 ll eulor(ll x)
114 {
115 ll cnt=x;
116 ll ma=sqrt(x);
117 for(int i=2;i<=ma;i++)
118 {
119 if(x%i==0) cnt=cnt/i*(i-1);
120 while(x%i==0) x/=i;
121 }
122 if(x>1) cnt=cnt/x*(x-1);
123 return cnt;
124 }
125 ll n,a,b;
126 typedef struct
127 {
128 ll mp[7][7];
129 void init()
130 {
131 mem(mp,0);
132 for(int i=0;i<7;i++)
133 mp[i][i]=1;
134 }
135 }matrix;
136 matrix pp={
137 1,1,0,0,0,0,0,
138 2,0,0,0,0,0,0,
139 1,0,1,0,0,0,0,
140 4,0,4,1,0,0,0,
141 6,0,6,3,1,0,0,
142 4,0,4,3,2,1,0,
143 1,0,1,1,1,1,1
144 };
145 matrix multi(matrix a,matrix b)
146 {
147 matrix res;
148 for(int i=0;i<7;i++)
149 {
150 for(int j=0;j<7;j++)
151 {
152 res.mp[i][j]=0;
153 for(int k=0;k<7;k++)
154 {
155 res.mp[i][j]=(res.mp[i][j]+(a.mp[i][k]*b.mp[k][j])%mod)%mod;
156 }
157 }
158 }
159 return res;
160 }
161 matrix fastm (matrix a,ll x)
162 {
163 matrix res;
164 res.init();
165 while(x)
166 {
167 if(x&1) res=multi(res,a);
168 x>>=1;
169 a=multi(a,a);
170 }
171 return res;
172 }
173 int main()
174 {
175 int t=read();
176 while(t--)
177 {
178 scanf("%lld%lld%lld",&n,&a,&b);
179 if(n==1) printf("%lld\n",a);
180 else if(n==2) printf("%lld\n",b);
181 else
182 {
183 matrix now=fastm(pp,n-2);
184 ll num;
185 num=(b*now.mp[0][0])%mod;
186 num=(num+a*now.mp[1][0]%mod)%mod;
187 num=(num+16*now.mp[2][0]%mod)%mod;
188 num=(num+8*now.mp[3][0]%mod)%mod;
189 num=(num+4*now.mp[4][0]%mod)%mod;
190 num=(num+2*now.mp[5][0]%mod)%mod;
191 num=(num+now.mp[6][0]%mod)%mod;
192 printf("%lld\n",num);
193 }
194 }
195 return 0;
196 }
E - Recursive sequence HDU - 5950 (矩阵快速幂)的更多相关文章
- HDU 5950 矩阵快速幂
Recursive sequence Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Other ...
- CF1106F Lunar New Year and a Recursive Sequence 原根、矩阵快速幂、BSGS
传送门 好久没写数论题了写一次调了1h 首先发现递推式是一个乘方的形式,线性递推和矩阵快速幂似乎都做不了,那么是否能够把乘方运算变成加法运算和乘法运算呢? 使用原根!学过\(NTT\)的都知道\(99 ...
- Recursive sequence HDU - 5950 (递推 矩阵快速幂优化)
题目链接 F[1] = a, F[2] = b, F[i] = 2 * F[i-2] + F[i-1] + i ^ 4, (i >= 3) 现在要求F[N] 类似于斐波那契数列的递推式子吧, 但 ...
- HDU - 6395 Sequence (整除分块+矩阵快速幂)
定义数列: $\left\{\begin{eqnarray*} F_1 &=& A \\ F_2 &=& B \\ F_n &=& C\cdot{}F_ ...
- HDU 6395 Sequence(分段矩阵快速幂)题解
题意: 已知\(A,B,C,D,P,n\)以及 \[\left\{ \begin{aligned} & F_1 = A \\ & F_2 = B\\ & F_n = C*F_{ ...
- HDU 2855 (矩阵快速幂)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2855 题目大意:求$S(n)=\sum_{k=0}^{n}C_{n}^{k}Fibonacci(k)$ ...
- HDU 4471 矩阵快速幂 Homework
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=4471 解题思路,矩阵快速幂····特殊点特殊处理····· 令h为计算某个数最多须知前h个数,于是写 ...
- poj2778DNA Sequence (AC自动机+矩阵快速幂)
转载请注明出处: http://www.cnblogs.com/fraud/ ——by fraud DNA Sequence Time Limit: 1000MS Memory ...
- HDU - 1575——矩阵快速幂问题
HDU - 1575 题目: A为一个方阵,则Tr A表示A的迹(就是主对角线上各项的和),现要求Tr(A^k)%9973. Input数据的第一行是一个T,表示有T组数据. 每组数据的第一行有n( ...
随机推荐
- moment.js & convert timestamps to date string in js
moment.js & convert timestamps to date string in js https://momentjs.com/ moment().format('YYYY- ...
- qt DateTime 计算时间
qdatetime doc 获取当前时间 QDateTime t1 = QDateTime::currentDateTime(); qDebug() << t1.toString(&quo ...
- NGK治理机制研究
治理机制是区块链项目的重要设计.随着项目的运行,生态中的参与者需要根据实际运行情况对项目进行必要的更新和升级,以使项目持续良性发展.治理机制的作用是使不同参与者最终达成共识.治理机制直接决定这个网络生 ...
- django学习-17.如何提供一个规范的接口返回值
目录结构 1.前言 2.进行实际的一个完整流程操作 2.1.第一步:编写一个用于查询用户数据的视图函数 2.2.第二步:编写对应的一个url匹配规则 2.3.第三步:启动django项目[hellow ...
- js 一元运算符
一元运算符还有一个常用的用法就是将自执行函数的function从函数声明变成表达式. 常用的有 + - - ! void + function () { } - function () { } ~ f ...
- CSS布局,div居中,文字居中
.main { width: 100%; margin: 0 auto; .banner { img { width: 100%; } } .article { margin-bottom: 100p ...
- 力扣1052. 爱生气的书店老板-C语言实现-中等难度
题目 传送门 文本 今天,书店老板有一家店打算试营业 customers.length 分钟.每分钟都有一些顾客(customers[i])会进入书店,所有这些顾客都会在那一分钟结束后离开. 在某些时 ...
- CentOS部署TOMCAT8
官网下载地址:https://tomcat.apache.org/download-80.cgi 版本:TOMCAT 8 -- Core--tar.gz 首先需要将文件传输到CentOS的/usr/s ...
- ============================================ 微信小程序开发学习
开发文档: https://developers.weixin.qq.com/miniprogram/dev/framework/
- Vue学习笔记-jsonl转换显示工具JsonView安装及使用
一 使用环境: windows 7 64位操作系统 二 jsonl转换显示工具JsonView安装及使用 1.下载: https://github.com/gildas-lormeau/JSONV ...