ACwing291. 蒙德里安的夢想

Gold_stein發表於2024-04-01

注意:

這道題不能像小國王那樣,預處理出一個useful陣列,儲存所有可用的狀態:

for(int i = 2; i <= m + 1; i++)
        for(int j = 0; j < 1<<n; j++)
        {
            f[i&1][j] = 0;
            for(int k:Trans[j])
                f[i][j] += f[(i-1)][k];
        }

一定要列舉所有的狀態才行

如果當前這一列有奇數個零,那麼可以在前面一列填空填入,從而變成偶數個;

而如果兩列都已經確定,還有奇數個零,那就沒法挽救了。

所以一定要列舉所有狀態才行,在已知單獨一列的情況下,是沒法確定當前方案是否合法的

#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <string>
#include <string.h>
#include <cmath>
#include <vector>
#define R(x) x = read()
#define For(i, j, n) for (int i = j; i <= n; ++i)
using namespace std;

const int N = 15, M = 1 << 11;

typedef long long LL;

inline int read()
{
    int x = 0, f = 1;
    char ch = getchar();
    while (ch < '0' || ch > '9')
    {
        if (ch == '-')
            f = -1;
        ch = getchar();
    }
    while (ch >= '0' && ch <= '9')
    {
        x = x * 10 + ch - '0';
        ch = getchar();
    }
    return x * f;
}

int n, m;
LL f[N][M];
vector<int> Useful, Trans[M];
bool st[M];

bool check(int a, int b)
{
    if (a & b)
        return 0;
    if (!st[a | b])
        return 0;
    return 1;
}

void init()
{
    for (int i = 0; i < (1 << n); i++)
    {
        int cnt = 0;
        bool flag = true;
        for(int j = n - 1; j >= 0; j--)
        {
            if((i >> j)&1)
            {
                if(cnt&1)
                {
                    flag = false;
                    break;
                }
                cnt = 0;
            }
            else
                cnt++;
        }
        if (cnt & 1)
            flag = false;
        st[i] = flag;
    }
    for (int i = 0; i < (1 << n); i++)
    {
        Trans[i].clear();
        for(int j = 0; j < (1 << n); j++)
            if (check(i, j))
                Trans[i].push_back(j);
    }
}

LL dp()
{
    memset(f, 0, sizeof(f));
    f[1][0] = 1;
    for(int i = 2; i <= m + 1; i++)
        for(int j = 0; j < 1<<n; j++)
        {
            f[i&1][j] = 0;
            for(int k:Trans[j])
                f[i][j] += f[(i-1)][k];
        }
    return f[(m + 1)][0];
}

int main()
{
    while (1)
    {
        R(n);
        R(m);
        init();
        if (!n && !m)
            break;
        printf("%lld\n", dp());
    }
    return 0;
}

相關文章