Nowcoder B. 抓球
摘要
Title: Nowcoder B. 抓球
Tag: 组合数
Memory Limit: 64 MB
Time Limit: 1000 ms
Powered by:NEFU AB-IN
Nowcoder B. 抓球
-
题意
一个箱子里有n个黑球,m个白球,小王想要连续q次从箱子里随机的取出k个球(每次取出k个后立即放回),连续q次取球k个都为黑球的概率是多少,结果对1e9+7取模。
-
思路
推出式子为
ps: 关于组合数的计算
- 一定要边算边取模
- 算出一次的概率,再算多次的
-
代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59/*
* @Author: NEFU AB-IN
* @Date: 2022-04-03 15:12:00
* @FilePath: \ACM\ACnowcoder\2022.4.3\b.cpp
* @LastEditTime: 2022-04-03 15:59:53
*/
using namespace std;
typedef pair<int, int> PII;
const int MOD = 1e9 + 7;
const int N = 5e6 + 10;
int fact[N], infact[N];
int qp(int a, int b, int p)
{
int res = 1;
while (b)
{
if (b & 1)
res = res * a % p;
b >>= 1;
a = a * a % p;
}
return res;
}
signed main()
{
int t;
scanf("%lld", &t);
fact[0] = infact[0] = 1;
for (int i = 1; i < N; ++i)
{
fact[i] = fact[i - 1] * i % MOD;
infact[i] = infact[i - 1] * qp(i, MOD - 2, MOD) % MOD;
}
while (t--)
{
int n, m, k, q;
scanf("%lld%lld%lld%lld", &n, &m, &k, &q);
if (k > n)
{
printf("0\n");
continue;
}
int t = fact[n] * infact[m + n] % MOD * fact[m + n - k] % MOD * infact[n - k] % MOD;
printf("%lld\n", qp(t, q, MOD) % MOD);
}
return 0;
}