Codeforces 1051D Bicolorings

You are given a grid, consisting of 2 rows and n columns. Each cell of this grid should be colored either black or white.

Two cells are considered neighbours if they have a common border and share the same color. Two cells A and B belong to the same component if they are neighbours, or if there is a neighbour of A that belongs to the same component with B.

Let's call some bicoloring beautiful if it has exactly k components.

Count the number of beautiful bicolorings. The number can be big enough, so print the answer modulo 998244353.

Input

The only line contains two integers n and k (1≤n≤1000, 1≤k≤2n) — the number of columns in a grid and the number of components required.

Output

Print a single integer — the number of beautiful bicolorings modulo 998244353.

Examples

Input

3 4

Output

12

Input

4 1

Output

2

Input

1 2

Output

2

Note

One of possible bicolorings in sample 1

 

题意:给你一个2*n的矩阵,你只能填黑块或者是白块使得把这个矩阵分成k个部分,问你有多少种方案数?

 

 

解题思路:我设一个dp

dp[i][j][ki] 表示的是我到第i列已经有k块了  ki==1的表示第i列不是同一种颜色,ki==0表示第i列是同一种颜色

由于第i行的状态只与第i-1行的状态有关m,所以我们只需要考虑2*2的矩阵的情况就行

首先 我们就对一列进行考虑,

很容易知道  dp[1][1][0]=2,dp[1][2][1]=2, 其他状态都为0

这时候我们考虑状态转移

2*2的矩阵中每一个格子可以选黑块或者是白块,所以有2*2*2*2=16种情况。

                                                   

    这四种为同一种情况 dp[i][j][0]+=2*dp[i-1][j][1];

 

            

这两种算一种情况  dp[i][j][0]+=dp[i-1][k-1][0];

         

这也算一种情况  dp[i][j][0]+=dp[i-1][j][0]; 

                                                                      

                              

同理 这也算一种情况

dp[i][j][1]+=2*dp[i-1][j-1][0];

 

                                    

这算一种情况,dp[i][j][1]+=dp[i-1][j][1];

 

                                       

最后一种情况

dp[i][j][1]+=dp[i-1][j-2][1];     

 

 

然后暴力dp求解

 

#include<stdio.h>
#include<string.h>
#include<queue>
#include<algorithm>
using namespace std;
const int maxn=1100;
const long long mod=998244353;
#define ll long long
#define mem(a,b) memset(a,b,sizeof(a))
ll dp[maxn][2*maxn][2],n,m;
int main(){
	int i,j;
	mem(dp,0);
	scanf("%I64d%I64d",&n,&m);
	dp[1][2][1]=2;dp[1][1][0]=2;
	for(i=2;i<=n;i++){
		for(j=1;j<=m;j++){
			dp[i][j][0]+=2*dp[i-1][j][1]+dp[i-1][j-1][0]+dp[i-1][j][0];
			dp[i][j][0]%=mod;
			dp[i][j][1]+=2*dp[i-1][j-1][0]+dp[i-1][j-2][1]+dp[i-1][j][1];
			dp[i][j][1]%=mod; 
		}
	}
	ll ans=(dp[n][m][0]+dp[n][m][1])%mod;
	printf("%I64d\n",ans);
	return 0;
} 

   

                              

 

                                                                                                                                                       

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章