摘要:
第一类时mod为素数 1 typedef long long LL; 2 3 LL n,m,p; 4 5 LL quick_mod(LL a, LL b) 6 { 7 LL ans = 1; 8 a %= p; 9 while(b)10 {11 i... 阅读全文
摘要:
在被刘汝佳接连坑了两次之后决定不再用刘汝佳的网络流了 之后又找了一些模板 发现wind 的最给力了 1 const int maxn = 405; 2 const int maxm = maxn * maxn; 3 const int inf = 1000000000; 4 5 class Di... 阅读全文