ll rand_int(ll l, ll r) { //[l, r]
#ifdef LOCAL
static mt19937_64 gen;
#else
static mt19937_64 gen(chrono::steady_clock::now().time_since_epoch().count());
#endif
return uniform_int_distribution<ll>(l, r)(gen);
}
相关文章
- 12-20[NOI2014]随机数生成器 题解
- 12-20[NOI2014] 随机数生成器
- 12-20P2354 [NOI2014] 随机数生成器
- 12-20GO 使用时间作为种子生成随机数
- 12-20随机数生成器
- 12-20Excel生成随机数
- 12-20Go随机数
- 12-20国密随机数检测--2/15 块内频数检测
- 12-20python – 无需替换的内存高效随机数迭代器
- 12-20使用itertools产品时生成随机数