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

P1879 [USACO06NOV]Corn Fields G

https://www.luogu.com.cn/record/76684822
This commit is contained in:
Baoshuo Ren 2022-05-30 19:21:20 +08:00
parent 577fe26b55
commit a73adcbea1
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
21 changed files with 117 additions and 0 deletions

57
Luogu/P1879/P1879.cpp Normal file
View File

@ -0,0 +1,57 @@
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 15,
M = 0xfff + 5; // = (11111111111)2 + 5
const int mod = 1e8;
int m, n, a[N], f[N][M], ans;
bool s[M];
int main() {
std::ios::sync_with_stdio(false);
cin >> m >> n;
for (int i = 1; i <= m; i++) {
for (int j = 1, x; j <= n; j++) {
cin >> x;
a[i] <<= 1;
a[i] += x;
}
}
for (int i = 0; i < 0xfff; i++) {
// 行内不存在相邻的草地
if (!((i << 1) & i) && !((i >> 1) & i)) {
s[i] = true;
}
}
f[0][0] = 1;
for (int i = 1; i <= m; i++) {
// 当前行的状态
for (int j = 0; j < 0xfff; j++) {
// j 是合法的状态,且没有草被种在贫瘠的土地上
if (s[j] && (a[i] & j) == j) {
// 枚举上一行的状态
for (int k = 0; k < 0xfff; k++) {
if (!(k & j)) { // k 和 j 间不存在相邻的土地
f[i][j] = (f[i][j] + f[i - 1][k]) % mod;
}
}
}
}
}
for (int i = 0; i < 0xfff; i++) {
ans = (ans + f[m][i]) % mod;
}
cout << ans << endl;
return 0;
}

BIN
Luogu/P1879/data/cowfood.1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.10.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.8.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P1879/data/cowfood.9.out (Stored with Git LFS) Normal file

Binary file not shown.