0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 17:05:25 +00:00
https://sjzezoj.com/submission/71982
This commit is contained in:
Baoshuo Ren 2023-02-23 10:14:03 +08:00
parent 0ab8ee662d
commit cb74a3aa99
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
22 changed files with 150 additions and 0 deletions

87
S2OJ/254/254.cpp Normal file
View File

@ -0,0 +1,87 @@
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 105;
const int mod = 9999973;
int n, m;
long long f[N][N][N]{1}, ans;
long long C(long long x) {
return x * (x - 1) / 2;
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> m;
for (int i = 1; i <= n; i++) {
// 不增加炮
for (int j = 0; j <= m; j++) {
for (int k = 0; j + k <= m; k++) {
f[i][j][k] = f[i - 1][j][k];
}
}
// 增加 1 个炮
//
// 从 1 个炮增加到 2 个炮
for (int j = 0; j <= m; j++) {
for (int k = 1; j + k <= m; k++) {
f[i][j][k] = (f[i][j][k] + f[i - 1][j + 1][k - 1] * (j + 1) % mod) % mod;
}
}
// 增加 1 个炮
//
// 从 0 个炮增加到 1 个炮
for (int j = 1; j <= m; j++) {
for (int k = 0; j + k <= m; k++) {
f[i][j][k] = (f[i][j][k] + f[i - 1][j - 1][k] * (m - j - k + 1) % mod) % mod;
}
}
// 增加 2 个炮
//
// 一列从 0 个炮增加到 1 个炮
// 一列从 1 个炮增加到 2 个炮
for (int j = 0; j <= m; j++) {
for (int k = 1; j + k <= m; k++) {
f[i][j][k] = (f[i][j][k] + f[i - 1][j][k - 1] * j * (m - j - k + 1) % mod) % mod;
}
}
// 增加 2 个炮
//
// 两列从 0 个炮增加到 1 个炮
for (int j = 2; j <= m; j++) {
for (int k = 0; j + k <= m; k++) {
f[i][j][k] = (f[i][j][k] + f[i - 1][j - 2][k] * C(m - j - k + 2) % mod) % mod;
}
}
// 增加 2 个炮
//
// 两列从 1 个炮增加到 2 个炮
for (int j = 0; j <= m; j++) {
for (int k = 2; j + k <= m; k++) {
f[i][j][k] = (f[i][j][k] + f[i - 1][j + 2][k - 2] * C(j + 2) % mod) % mod;
}
}
}
for (int i = 0; i <= m; i++) {
for (int j = 0; i + j <= m; j++) {
ans = (ans + f[n][i][j]) % mod;
}
}
cout << ans << endl;
return 0;
}

BIN
S2OJ/254/data/problem.conf (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx10.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx8.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/254/data/wwxwwx9.out (Stored with Git LFS) Normal file

Binary file not shown.