#ABC265H. [ABC265Ex] No-capture Lance Game

[ABC265Ex] No-capture Lance Game

Score : 600600 points

Problem Statement

There is a grid with HH horizontal rows and WW vertical columns, and (2×H)(2 \times H) pieces. We consider the following game using them. Two players take alternating turns. The game progresses as follows.

  • In the initial state, every row contains one piece of the first player facing left and one piece of the second player facing right.
  • The two players alternately advance one of their pieces.
  • The player who is first to be unable to make a move loses, and the other player wins.

Let (i,j)(i, j) denote the square at the ii-th row from the top and jj-th column from the left. The following moves are allowed:

  • The first player can move a piece at (i,j)(i,j) to (i,k)(i,k) if k<jk \lt j and none of (i,k),(i,k+1),,(i,j1)(i,k),(i,k+1),\dots,(i,j-1) contains a piece of either player.
  • The second player can move a piece at (i,j)(i,j) to (i,k)(i,k) if k>jk \gt j and none of (i,j+1),(i,j+2),,(i,k)(i,j+1),(i,j+2),\dots,(i,k) contains a piece of either player.

For example, in the figure below, on a 3×93\times 9 grid, the first player's pieces are at (1,7),(2,1),(3,4)(1,7),(2,1),(3,4), and the second player's pieces are at (1,3),(2,7),(3,5)(1,3),(2,7),(3,5). The first player can move the piece at (1,7)(1,7) to (1,4),(1,5)(1,4),(1,5), or (1,6)(1,6), and the piece at (3,4)(3,4) to (3,1),(3,2)(3,1),(3,2), or (3,3)(3,3). The first player cannot move the piece at (2,1)(2,1).

Currently, there is no piece on the grid. There are {W(W1)}H\left\lbrace W(W-1)\right\rbrace^H ways to place one piece of the first player and one piece of the second player in each row, so that no two pieces are placed at the same square. How many of them satisfy the following condition? Find the count modulo 998244353998244353.

  • When they play the game optimally from that initial state, the first player wins.

Constraints

  • 1H80001 \leq H \leq 8000
  • 2W302 \leq W \leq 30
  • HH and WW are integers.

Input

Input is given from Standard Input in the following format:

HH WW

Output

Print the answer.

1 3
2

The first player can win if:

  • the first player's piece is placed at (1,3)(1, 3), and the second player's piece is placed at (1,1)(1, 1); or
  • the first player's piece is placed at (1,2)(1, 2), and the second player's piece is placed at (1,3)(1, 3).
9 9
583962987
265 30
366114675