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

bzoj2875随机数生成器

时间:2018-05-16 00:22:10      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:std   oid   i++   get   return   def   nbsp   生成   geo   

题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2875

矩阵乘裸题。

如果直接乘的话会爆long long,所以用加法代替乘,过程中不断取模。

加法应是快速乘,不要O(n)循环……

#include<iostream>
#include<cstdio>
#include<cstring>
#define ll long long
using namespace std;
ll n,m,g,a,c,ans,x;
ll mul(ll u,ll v)
{
    ll ret=0,tp=u;
    while(v)
    {
        if(v&1)(ret+=tp)%=m;
        (tp+=tp)%=m;v>>=1;
    }
    return ret;
}
struct Matrix{
    ll v[2][2];
    Matrix operator *(const Matrix &b)const
    {
        Matrix tp;memset(tp.v,0,sizeof tp.v);
        for(int i=0;i<=1;i++)
            for(int j=0;j<=1;j++)
                for(int k=0;k<=1;k++)
                    (tp.v[i][j]+=mul(v[i][k],b.v[k][j]))%=m;
        return tp;
    }
}res,ct;
void init()
{
    scanf("%lld%lld%lld%lld%lld%lld",&m,&a,&c,&x,&n,&g);
    n--;
    res.v[0][0]=a;res.v[0][1]=1;
    res.v[1][0]=0;res.v[1][1]=1;
    memcpy(ct.v,res.v,sizeof res.v);
}
int main()
{
    init();
    while(n)
    {
        if(n&1)res=res*ct;
        ct=ct*ct;n>>=1;
    }
    ans=(mul(res.v[0][0],x)+mul(res.v[0][1],c))%m%g;
    printf("%lld",ans);
    return 0;
}

 

bzoj2875随机数生成器

标签:std   oid   i++   get   return   def   nbsp   生成   geo   

原文地址:https://www.cnblogs.com/Narh/p/9043488.html

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