0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 19:45:24 +00:00

1566. [NOI2009] 管道取珠

https://hydro.ac/d/bzoj/record/63e10b29dd8145683f7993dc
This commit is contained in:
Baoshuo Ren 2023-02-06 22:14:33 +08:00
parent 25a54d4d33
commit 31d8a15231
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
21 changed files with 118 additions and 0 deletions

58
BZOJ/1566/1566.cpp Normal file
View File

@ -0,0 +1,58 @@
#include <iostream>
#include <algorithm>
#include <cstring>
#include <string>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 505;
const int mod = 1024523;
int n, m, f[2][N][N]{1};
std::string a, b;
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> m >> a >> b;
std::reverse(a.begin(), a.end());
std::reverse(b.begin(), b.end());
a = ' ' + a;
b = ' ' + b;
for (int k = 1; k <= n + m; k++) {
int t = k & 1,
p = t ^ 1;
memset(f[t], 0x00, sizeof(f[t]));
for (int i = std::max(0, k - m); i <= std::min(n, k); i++) {
for (int j = std::max(0, k - m); j <= std::min(n, k); j++) {
if (i && j && a[i] == a[j]) {
f[t][i][j] = (f[t][i][j] + f[p][i - 1][j - 1]) % mod;
}
if (i && k - j && a[i] == b[k - j]) {
f[t][i][j] = (f[t][i][j] + f[p][i - 1][j]) % mod;
}
if (k - i && j && b[k - i] == a[j]) {
f[t][i][j] = (f[t][i][j] + f[p][i][j - 1]) % mod;
}
if (k - i && k - j && b[k - i] == b[k - j]) {
f[t][i][j] = (f[t][i][j] + f[p][i][j]) % mod;
}
}
}
}
cout << f[(n + m) & 1][n][n] << endl;
return 0;
}

BIN
BZOJ/1566/data/1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/10.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/8.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1566/data/9.out (Stored with Git LFS) Normal file

Binary file not shown.