码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-08-14 19:51:46      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:php   while   http   随机   define   mem   乘法   its   oid   

题面

题目传送门

解法

矩阵乘法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;
    while (y) {
        if (y & 1) ret = (ret + x) % m;
        y >>= 1, x = (x + x) % m;
    }
    return ret;
}
Matrix operator * (Matrix x, Matrix y) {
    Matrix ret; ret.Clear();
    for (int k = 1; k <= 2; k++)
        for (int i = 1; i <= 2; i++)
            for (int j = 1; j <= 2; j++)
                ret.a[i][j] = (ret.a[i][j] + mul(x.a[i][k], y.a[k][j])) % m;
    return ret;
}
Matrix operator ^ (Matrix x, int y) {
    Matrix ret = x; y--;
    while (y) {
        if (y & 1) ret = ret * x;
        y >>= 1, x = x * x;
    }
    return ret;
}
main() {
    cin >> m >> a >> c >> x >> n >> g;  
    Matrix tx, ret; tx.Clear();
    tx.a[1][1] = a, tx.a[1][2] = c;
    tx.a[2][1] = 0, tx.a[2][2] = 1;
    ret.a[1][1] = x, ret.a[2][1] = 1;
    tx = tx ^ n; ret = tx * ret;
    cout << ret.a[1][1] % g << "\n";
    return 0;
}

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

标签:php   while   http   随机   define   mem   乘法   its   oid   

原文地址:https://www.cnblogs.com/copperoxide/p/9476730.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!