首页 > 代码库 > ZOJ 3557 How Many Sets II lucas 定理
ZOJ 3557 How Many Sets II lucas 定理
插空法 大组合数取余
#include <cstdio> #include <cstring> using namespace std; typedef long long LL; //求整数x和y,使得ax+by=d, 且|x|+|y|最小。其中d=gcd(a,b) void gcd(LL a, LL b, LL& d, LL& x, LL& y) { if(!b) { d = a; x = 1; y = 0; } else { gcd(b, a%b, d, y, x); y -= x * (a/b); } } //计算模n下a的逆。如果不存在逆, 返回-1 LL inv(LL a, LL n) { LL d, x, y; gcd(a, n, d, x, y); return d == 1 ? (x+n)%n : -1; } LL cm(LL n, LL m, LL p) { LL ans1 = 1, ans2 = 1; while(m) { ans1 = ans1*n%p; ans2 = ans2*m%p; n--; m--; } return ans1*inv(ans2, p)%p; } LL lucas(LL n, LL m, LL p) { if(m == 0) return 1; return lucas(n/p, m/p, p)*cm(n%p, m%p, p)%p; } int main() { LL n, m, p; while(scanf("%lld %lld %lld", &n, &m, &p) != EOF) { printf("%lld\n", lucas(n-2*m+1+m, m, p)); } return 0; }
ZOJ 3557 How Many Sets II lucas 定理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。