0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00

P4609 [FJOI2016]建筑师

https://www.luogu.com.cn/record/96923331
This commit is contained in:
Baoshuo Ren 2022-12-09 20:58:12 +08:00
parent 73ebe1d928
commit fb37785085
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

52
Luogu/P4609/P4609.cpp Normal file
View File

@ -0,0 +1,52 @@
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 5e4 + 5,
M = 205;
const int mod = 1e9 + 7;
int s[N][M], c[M][M];
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
s[0][0] = s[1][1] = 1;
for (int i = 2; i < N; i++) {
s[i][1] = static_cast<long long>(s[i - 1][1]) * (i - 1) % mod;
}
for (int i = 2; i < N; i++) {
for (int j = 1; j < M && j <= i; j++) {
s[i][j] = (static_cast<long long>(s[i - 1][j - 1]) + static_cast<long long>(s[i - 1][j]) * (i - 1)) % mod;
}
}
for (int i = 0; i < M; i++) {
c[i][0] = c[i][i] = 1;
}
for (int i = 2; i < M; i++) {
for (int j = 1; j < i; j++) {
c[i][j] = (static_cast<long long>(c[i - 1][j]) + c[i - 1][j - 1]) % mod;
}
}
int t;
cin >> t;
while (t--) {
int n, a, b;
cin >> n >> a >> b;
cout << static_cast<long long>(s[n - 1][a + b - 2]) * c[a + b - 2][a - 1] % mod << endl;
}
return 0;
}