CF1866H.Happy Sets

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Define a set AA as a child of set BB if and only if for each element of value xx that is in AA , there exists an element of value x+1x+1 that is in BB .

Given integers NN and KK . In order to make Chaneka happy, you must find the number of different arrays containing NN sets [S1,S2,S3,,SN][S_1, S_2, S_3, \ldots, S_N] such that: - Each set can only contain zero or more different integers from 11 to KK . - There exists a way to rearrange the order of the array of sets into [S1,S2,S3,,SN][S'_1, S'_2, S'_3, \ldots, S'_N] such that SiS'_i is a child of Si+1S'_{i+1} for each 1iN11\leq i\leq N-1 .

Print the answer modulo 998244353998\,244\,353 .

Two sets are considered different if and only if there is at least one value that only occurs in one of the two sets.

Two arrays of sets are considered different if and only if there is at least one index ii such that the sets at index ii in the two arrays are different.

输入格式

The only line contains two integers NN and KK ( 1N,K21051 \leq N,K \leq 2\cdot10^5 ) — the number of sets in the array and the maximum limit for the values in the sets.

输出格式

An integer representing the number of different arrays of sets that satisfy the problem condition, modulo 998244353998\,244\,353 .

输入输出样例

  • 输入#1

    2 2

    输出#1

    11
  • 输入#2

    1 3

    输出#2

    8
  • 输入#3

    3 1

    输出#3

    4

说明/提示

In the first example, there are 1111 different arrays of sets possible, which are:

  • [{},{}][\{\}, \{\}]
  • [{},{1}][\{\}, \{1\}]
  • [{},{1,2}][\{\}, \{1, 2\}]
  • [{},{2}][\{\}, \{2\}]
  • [{1},{}][\{1\}, \{\}]
  • [{1},{1,2}][\{1\}, \{1, 2\}]
  • [{1},{2}][\{1\}, \{2\}]
  • [{1,2},{}][\{1, 2\}, \{\}]
  • [{1,2},{1}][\{1, 2\}, \{1\}]
  • [{2},{}][\{2\}, \{\}]
  • [{2},{1}][\{2\}, \{1\}]
首页