CF1503E.2-Coloring
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There is a grid with n rows and m columns. Every cell of the grid should be colored either blue or yellow.
A coloring of the grid is called stupid if every row has exactly one segment of blue cells and every column has exactly one segment of yellow cells.
In other words, every row must have at least one blue cell, and all blue cells in a row must be consecutive. Similarly, every column must have at least one yellow cell, and all yellow cells in a column must be consecutive.
An example of a stupid coloring.
Examples of clever colorings. The first coloring is missing a blue cell in the second row, and the second coloring has two yellow segments in the second column. How many stupid colorings of the grid are there? Two colorings are considered different if there is some cell that is colored differently.
输入格式
The only line contains two integers n , m ( 1≤n,m≤2021 ).
输出格式
Output a single integer — the number of stupid colorings modulo 998244353 .
输入输出样例
输入#1
2 2
输出#1
2
输入#2
4 3
输出#2
294
输入#3
2020 2021
输出#3
50657649
说明/提示
In the first test case, these are the only two stupid 2×2 colorings.