0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-23 22:48:48 +00:00

#1898. 【BZOJ3622】已经没有什么好害怕的了

https://sjzezoj.com/submission/68532
This commit is contained in:
Baoshuo Ren 2023-02-08 08:50:20 +08:00
parent 09e9e78b08
commit 941e72c53e
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
22 changed files with 143 additions and 0 deletions

80
S2OJ/1898/1898.cpp Normal file
View File

@ -0,0 +1,80 @@
#include <iostream>
#include <algorithm>
#include <iterator>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 2005;
const int mod = 1e9 + 9;
int n, k, inv[N], fac[N], inv_fac[N], a[N], b[N], l[N], f[N][N], g[N], ans;
inline int C(int n, int m) {
return static_cast<long long>(fac[n]) * inv_fac[m] % mod * inv_fac[n - m] % mod;
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
fac[0] = 1;
for (int i = 1; i < N; i++) {
fac[i] = static_cast<long long>(fac[i - 1]) * i % mod;
}
inv[0] = inv[1] = 1;
for (int i = 2; i < N; i++) {
inv[i] = static_cast<long long>(mod - (mod / i)) * inv[mod % i] % mod;
}
inv_fac[0] = inv_fac[1] = 1;
for (int i = 2; i < N; i++) {
inv_fac[i] = static_cast<long long>(inv_fac[i - 1]) * inv[i] % mod;
}
cin >> n >> k;
if ((n - k) % 2 == 1) {
cout << 0 << endl;
exit(0);
}
std::copy_n(std::istream_iterator<int>(cin), n, a + 1);
std::copy_n(std::istream_iterator<int>(cin), n, b + 1);
std::sort(a + 1, a + 1 + n);
std::sort(b + 1, b + 1 + n);
std::transform(a + 1, a + 1 + n, l + 1, [&](int x) {
return std::distance(b + 1, std::lower_bound(b + 1, b + 1 + n, x));
});
f[0][0] = 1;
for (int i = 1; i <= n; i++) {
f[i][0] = f[i - 1][0];
for (int j = 1; j <= i; j++) {
f[i][j] = (static_cast<long long>(f[i - 1][j]) + static_cast<long long>(f[i - 1][j - 1]) * (l[i] - j + 1) % mod) % mod;
}
}
for (int i = 0; i <= n; i++) {
g[i] = static_cast<long long>(f[n][i]) * fac[n - i] % mod;
}
int w = (n + k) >> 1;
for (int i = w; i <= n; i++) {
if ((i - w) & 1) {
ans = (static_cast<long long>(ans) - static_cast<long long>(C(i, w)) * g[i] % mod + mod) % mod;
} else {
ans = (static_cast<long long>(ans) + static_cast<long long>(C(i, w)) * g[i] % mod) % mod;
}
}
cout << ans << endl;
return 0;
}

BIN
S2OJ/1898/data/data1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data10.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data8.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1898/data/data9.out (Stored with Git LFS) Normal file

Binary file not shown.

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

Binary file not shown.