CF1027E.Inverse Coloring
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a square board, consisting of n rows and n columns. Each tile in it should be colored either white or black.
Let's call some coloring beautiful if each pair of adjacent rows are either the same or different in every position. The same condition should be held for the columns as well.
Let's call some coloring suitable if it is beautiful and there is no rectangle of the single color, consisting of at least k tiles.
Your task is to count the number of suitable colorings of the board of the given size.
Since the answer can be very large, print it modulo 998244353 .
输入格式
A single line contains two integers n and k ( 1≤n≤500 , 1≤k≤n2 ) — the number of rows and columns of the board and the maximum number of tiles inside the rectangle of the single color, respectively.
输出格式
Print a single integer — the number of suitable colorings of the board of the given size modulo 998244353 .
输入输出样例
输入#1
1 1
输出#1
0
输入#2
2 3
输出#2
6
输入#3
49 1808
输出#3
359087121
说明/提示
Board of size 1×1 is either a single black tile or a single white tile. Both of them include a rectangle of a single color, consisting of 1 tile.
Here are the beautiful colorings of a board of size 2×2 that don't include rectangles of a single color, consisting of at least 3 tiles:
The rest of beautiful colorings of a board of size 2×2 are the following: