Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // second types of template
- ll nCr(ll n, ll r)
- {
- ll p = 1, k = 1;
- if (n - r < r)
- r = n - r;
- if (r != 0)
- {
- while (r)
- {
- p *= n;
- k *= r;
- ll m = __gcd(p, k);
- p /= m;
- k /= m;
- n--;
- r--;
- }
- }
- else
- p = 1;
- return p;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement