2019-04-14 16:51发布 生成海报
// 介于[-mod, 0)的最大模mod同余整数 template T toNegative(T x, T mod) { x = ((x % mod) - mod) % mod; return x ? x : -mod; }