洛谷-P1896 [SCOI2005]互不侵犯
阿新 • • 發佈:2019-02-10
前行 i++ 狀壓dp () 鏈接 num true queue stat
鏈接:https://www.luogu.org/problemnew/show/P1896
題意:
在N×N的棋盤裏面放K個國王,使他們互不攻擊,共有多少種擺放方案。國王能攻擊到它上下左右,以及左上左下右上右下八個方向上附近的各一個格子,共8個格子。
思路:
狀壓dp,dp[i][j][k]。表示。第i行,放j個國王,第j種狀態的方法。
預處理第一行,dp。
枚舉當前行和上一行的狀態。
代碼:
#include <iostream> #include <memory.h> #include <string> #include <istream> #include <sstream> #include <vector> #include <stack> #include <algorithm> #include <map> #include <queue> #include <math.h> #include <cstdio> using namespace std; typedef long long LL; const int MAXN = 10; const int STATES = 400; int states[STATES]; int num[STATES]; LL dp[MAXN][MAXN * MAXN][STATES]; int pos = 0; int Get_w(int n) { int res = 0; while (n) { if (n & 1) res++; n >>= 1; } return res; } void Init(int w) { int total = (1 << w); for (int i = 0;i < total;i++) { if ((i & (i << 1)) == 0) { states[++pos] = i; num[i] = Get_w(i); } } } int main() { int n, kk; scanf("%d%d", &n, &kk); Init(n); for (int i = 1;i <= pos;i++) dp[1][num[states[i]]][states[i]] = 1; for (int i = 2;i <= n;i++) { for (int j = 1;j <= pos;j++)//當前行 { for (int k = 1;k <= pos;k++)//上一行 { if (states[j] & states[k] || (states[j] << 1) & states[k] || (states[j] >> 1) & states[k]) continue; for (int x = 0;x <= kk - num[states[j]];x++) dp[i][num[states[j]] + x][states[j]] += dp[i - 1][x][states[k]]; } } } LL res = 0; for (int i = 1;i <= pos;i++) res += dp[n][kk][states[i]]; printf("%lld\n", res); return 0; }
洛谷-P1896 [SCOI2005]互不侵犯