造福后人

P2137 Gty的妹子树

所以这是讨论区数据生成器?!
by _caiji_ @ 2021-03-23 20:39:33


讨论区数据生成器 举报了(大雾) 我说你这个系统自带的`rand()`不好用,我这个19937年的茅台好用,这是化劲儿 (大概要C++11?) ```cpp #include<cstdio> #include<random> using namespace std; random_device seed; mt19937 gen(seed()); int rand(int a,int b) { uniform_int_distribution<> range(a,b); return range(gen); } ```
by _Life_ @ 2021-03-23 20:46:07


@[_Life_](/user/87434) abab,主要我这题调了很久,所以想给以后做的同学留个数据生成器,免得写了
by chen_qian @ 2021-03-23 21:05:14


|