BZOJ 2875: [Noi2012]随机数生成器( 矩阵快速幂 )

矩阵快速幂...+快速乘就OK了

--------------------------------------------------------------------------------------

#include<bits/stdc++.h>

using namespace std;

typedef long long ll;

ll MOD, a, c, x, n, g;

ll MUL(ll a, ll b) {

ll ans = 0;

for(; b; b >>= 1) {

if(b & 1) ans += a;

if(ans >= MOD) ans -= MOD;

a <<= 1;

if(a >= MOD) a -= MOD;

}

return ans;

}

struct matrix {

ll x[2][2];

matrix() {

memset(x, 0, sizeof x);

}

inline void unit() {

x[0][0] = x[1][1] = 1;

x[0][1] = x[1][0] = 0;

}

matrix operator * (const matrix &o) {

matrix ans;

for(int i = 0; i < 2; i++)

for(int j = 0; j < 2; j++)

for(int k = 0; k < 2; k++)

(ans.x[i][j] += MUL(x[i][k], o.x[k][j])) %= MOD;

return ans;

}

matrix operator = (const matrix &o) {

memcpy(x, o.x, sizeof x);

return *this;

}

matrix operator ^ (ll k) {

matrix ans, p = *this; ans.unit();

for(; k; k >>= 1) {

if(k & 1) ans = ans * p;

p = p * p;

}

return ans;

}

} Q;

int main() {

cin >> MOD >> a >> c >> x >> n >> g;

Q.x[0][0] = a; Q.x[0][1] = 0; Q.x[1][0] = c; Q.x[1][1] = 1;

matrix ans = Q ^ n;

cout << (MUL(x, ans.x[0][0]) + ans.x[1][0]) % MOD % g << "\n";

return 0;

}

--------------------------------------------------------------------------------------

2875: [Noi2012]随机数生成器

Time Limit: 10 Sec  Memory Limit: 512 MB
Submit: 1289  Solved: 731
[Submit][Status][Discuss]

Description

Input

包含6个用空格分割的m,a,c,X0,n和g,其中a,c,X0是非负整数,m,n,g是正整数。

Output

输出一个数,即Xn mod g

Sample Input

11 8 7 1 5 3

Sample Output

2

HINT

Source

时间: 2024-10-12 15:37:26

BZOJ 2875: [Noi2012]随机数生成器( 矩阵快速幂 )的相关文章

bzoj 2875 [Noi2012]随机数生成器 矩阵乘法

题面 题目传送门 解法 矩阵乘法sb题 注意整数乘法要使用龟速乘,否则会爆long long 代码 #include <bits/stdc++.h> #define int long long using namespace std; struct Matrix { int a[4][4]; void Clear() {memset(a, 0, sizeof(a));} }; int n, m, a, c, x, g; int mul(int x, int y) { int ret = 0;

[BZOJ 2875][NOI 2012]随机数生成器(矩阵快速幂)

题目链接:http://www.lydsy.com:808/JudgeOnline/problem.php?id=2875 题目居然没给描述,我特么真无语了...好吧我来发个题目描述: 给出a,c,g,mod,x0,n,xn=(a*xn-1+c)%mod,求xn%g 联想用矩阵快速幂在logn的复杂度下求斐波那契数列,对这题我们也可以采取类似的方法. 我们用矩阵运算来改装这个递推式: 设 那么 于是可以直接用矩阵快速幂求A矩阵的n次方,然后再乘上x0即可得出xn 此题还有两个坑点: 1.xn求出

bzoj2875随机数生成器——矩阵快速幂

题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2875 矩阵快速幂,把x和c开求,最后加上即可: 为防止爆long long,要用快速乘. 代码如下: #include<iostream> #include<cstdio> #include<cstring> using namespace std; typedef long long ll; ll n,x,a,c,m,g; ll mul(ll x,ll y) {

[bzoj 2875][noi2012]随机数生成器

传送门 Description 栋栋最近迷上了随机算法,而随机数是生成随机算法的基础.栋栋准备使用线性同余法(Linear Congruential Me thod)来生成一个随机数列,这种方法需要设置四个非负整数参数m,a,c,X[0],按照下面的公式生成出一系列随机 数X[n]X[n+1]=(aX[n]+c)mod m其中mod m表示前面的数除以m的余数.从这个式子可以看出,这个序列的下一个数 总是由上一个数生成的.用这种方法生成的序列具有随机序列的性质,因此这种方法被广泛地使用,包括常用

2875: [Noi2012]随机数生成器 - BZOJ

DescriptionInput 包含6个用空格分割的m,a,c,X0,n和g,其中a,c,X0是非负整数,m,n,g是正整数. Output 输出一个数,即Xn mod gSample Input 11 8 7 1 5 3 Sample Output2 快速幂+快速乘 1 type 2 matrix=array[1..2,1..2]of int64; 3 var 4 a,c,p,x0,n,g:int64; 5 x,y:matrix; 6 7 function kc(x,y:int64):int

【BZOJ】2875: [Noi2012]随机数生成器(矩阵乘法+快速乘)

http://www.lydsy.com/JudgeOnline/problem.php?id=2875 矩阵的话很容易看出来.....我就不写了.太水了. 然后乘法longlong会溢出...那么我们用快速乘...就是将快速幂的乘法变成加法...这种很简单吧.. #include <cstdio> #include <cstring> #include <cmath> #include <string> #include <iostream>

矩阵(快速幂):COGS 963. [NOI2012] 随机数生成器

963. [NOI2012] 随机数生成器 ★★   输入文件:randoma.in   输出文件:randoma.out   简单对比 时间限制:1 s   内存限制:128 MB [问题描述] 栋栋最近迷上了随机算法,而随机数是生成随机算法的基础.栋栋准备使用线性同余法(Linear Congruential Method)来生成一个随机数列,这种方法需要设置四个非负整数参数m,a,c,X[0],按照下面的公式生成出一系列随机数{Xn}:X[n+1]=(aX[n]+c) mod m 其中mo

BZOJ 2510: 弱题( 矩阵快速幂 )

每进行一次, 编号为x的数对x, 和(x+1)%N都有贡献 用矩阵快速幂, O(N3logK). 注意到是循环矩阵, 可以把矩阵乘法的复杂度降到O(N2). 所以总复杂度就是O(N2logK) ---------------------------------------------------------------------- #include<bits/stdc++.h> using namespace std; const int maxn = 1009; int N, M, K,

BZOJ 1297: [SCOI2009]迷路 [矩阵快速幂]

Description windy在有向图中迷路了. 该有向图有 N 个节点,windy从节点 0 出发,他必须恰好在 T 时刻到达节点 N-1. 现在给出该有向图,你能告诉windy总共有多少种不同的路径吗? 注意:windy不能在某个节点逗留,且通过某有向边的时间严格为给定的时间. Input 第一行包含两个整数,N T. 接下来有 N 行,每行一个长度为 N 的字符串. 第i行第j列为'0'表示从节点i到节点j没有边. 为'1'到'9'表示从节点i到节点j需要耗费的时间. Output 包