zoukankan      html  css  js  c++  java
  • CodeForces

    odeforces 1051 D. Bicolorings (DP)

     
    D. Bicolorings
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    You are given a grid, consisting of 22 rows and nn 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 AA and BB belong to the same component if they are neighbours, or if there is a neighbour of AA that belongs to the same component with BB.

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

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

    Input

    The only line contains two integers nn and kk (1n10001≤n≤1000, 1k2n1≤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 998244353998244353.

    Examples
    Input
    3 4
    Output
    12
    Input
    4 1
    Output
    2
    Input
    1 2
    Output
    2
    Note

    One of possible bicolorings in sample 11:

    题意:就是求2行n列 k个联通块的方案数
    这个题注意前面列的染色情况,就可以知道当前列染色后的方案数,i表示列,k表示联通块,后面一维表示当前位置的染色情况,这个情况总共四种,这样转移方程就很好想,只和前一列的联通块和染色情况有关
     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 typedef long long ll;
     4 int n,k;
     5 
     6 const int mod = 998244353;
     7 ll dp[1005][2005][4];
     8 int main()
     9 {
    10     scanf("%d%d",&n,&k);
    11     dp[1][1][0] = 1;
    12     dp[1][2][1] = 1;
    13     dp[1][2][2] = 1;
    14     dp[1][1][3] = 1;
    15     for(int i=2;i<=n;i++)
    16     {
    17         for(int j=1;j<=(i<<1);j++)
    18         {
    19             dp[i][j][0] = (dp[i][j][0] + dp[i-1][j][0] + dp[i-1][j][1] + dp[i-1][j][2] + dp[i-1][j-1][3])%mod;
    20             dp[i][j][1] = (dp[i][j][1] + dp[i-1][j-1][0] + dp[i-1][j][1] + dp[i-1][j-2][2]+dp[i-1][j-1][3])%mod;
    21             dp[i][j][2] = (dp[i][j][2] + dp[i-1][j-1][0] + dp[i-1][j-2][1] + dp[i-1][j][2]+dp[i-1][j-1][3])%mod;
    22             dp[i][j][3] = (dp[i][j][3] + dp[i-1][j-1][0] + dp[i-1][j][1] + dp[i-1][j][2]+dp[i-1][j][3])%mod;
    23         }
    24     }
    25     printf("%lld
    ",(dp[n][k][0]+dp[n][k][1]+dp[n][k][2]+dp[n][k][3])%mod);
    26 }
    View Code
  • 相关阅读:
    打击目标
    面试中的坑,你能爬出来几个?
    [linux] 小问题:管道符,换行问题等;[nginx]启动,重启,关闭命令;以及升级nginx切换命令
    xshell下使用vim的编辑一个文件Ctrl+S和Ctrl+Q
    [PHP] 调用微博API 发微博OAuth2.0
    [YII2] 视图层过滤客户恶意代码
    [YII2] 增删改查2
    [YII2] 增删改查
    [YII2] 自带分页调整
    [JS] 自己弄得个倒计时
  • 原文地址:https://www.cnblogs.com/iwannabe/p/9752443.html
Copyright © 2011-2022 走看看