摘要: LL inv[maxn];inline void inv_init(){ inv[0] = inv[1] = 1; for(int i=2; i<maxn; i++) inv[i] = (LL)(mod - mod / i) * inv[mod % i] % mod;} 阅读全文
posted @ 2018-05-30 15:25 qwerity 阅读(143) 评论(0) 推荐(0) 编辑