伪随机数生成器
Posted PECHPO
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了伪随机数生成器相关的知识,希望对你有一定的参考价值。
伪随机数生成器
emm,应该没有什么好说的。
const int maxn=1000;
const int a=19260817, c=1, m=1<<31;
int x=233;
int random(){ return x=(1LL*a*x+c)%m; }
以上是关于伪随机数生成器的主要内容,如果未能解决你的问题,请参考以下文章