摘要: 组合数,虎爷版 阅读全文
posted @ 2017-10-28 11:02 啦啦啦天啦噜 阅读(161) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std; typedef long long ll; ll mod_pow(ll x, ll n, ll p){ ll res = 1; while(n){ if(n & 1) res =res * x % p; x = x * x % p; ... 阅读全文
posted @ 2017-10-28 10:58 啦啦啦天啦噜 阅读(154) 评论(0) 推荐(0) 编辑