-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCON5_5.cpp
74 lines (69 loc) · 1.73 KB
/
CON5_5.cpp
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
60
61
62
63
64
65
66
67
68
69
70
71
72
// Cho 2 số nguyên n, k. Bạn hãy tính C(n, k) modulo
#include <bits/stdc++.h>
using namespace std;
const int mod = 1000000007;
/*
// Với n va r nhỏ
int main() {
int t; cin >> t;
while(t--){
int n, r;
double sum = 1;
cin >> n >> r;
for(int i = 1; i <= r; i++){ // Công thức hệ thức Newton: (1 + x)^bn = sigma(k = 0, n){nCk * x^k}
sum = sum * (n - r + i) / i;
}
cout<<(int)sum<<endl;
}
}
*/
/*
int binomialCoeff(int n, int k)
{
int C[n + 1][k + 1];
for (i = 0; i <= n; i++) {
for (j = 0; j <= min(i, k); j++) { // min để kiểm soát sao cho j ko > i (hay k ko lớn hơn n của nCk)
if (j == 0 || j == i)
C[i][j] = 1;
else
C[i][j] = C[i - 1][j - 1] + C[i - 1][j];
}
}
return C[n][k];
}
*/
/*
int arr[1001][1001];
void check(){
arr[0][0] = 1;
for (int i = 1; i < 1001; i++){
arr[i][0] = 1;
for (int j = 1; j < 1001; j++){
arr[i][j] = (arr[i - 1][j - 1] % mod + arr[i - 1][j] % mod) % mod;
}
}
}
*/
int arr[1001][1001];
void check(){
for (int i = 0; i <= 1000; i++){
for (int j = 0; j <= 1000; j++){
if (j > i) arr[i][j] = 0; // dòng này có hoặc không cx đc, vì lúc khởi tạo mảng toàn cục arr, các giá trị trong mảng đã toàn = 0 rồi.
if (j == 0 || j == i){
arr[i][j] = 1;
}else{
arr[i][j] = (arr[i - 1][j - 1] % mod + arr[i - 1][j] % mod) % mod;
}
}
}
}
int main(){
int t; cin >> t;
check();
while(t--){
int n, k;
cin >> n >> k;
cout<<arr[n][k]; //arr[i][j]
cout<<endl;
}
}