A16264 | Happy Sets
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Define a set $A$ as a child of set $B$ if and only if for each element of value $x$ that is in $A$ , there exists an element of value $x+1$ that is in $B$ .
Given integers $N$ and $K$ . In order to make Chaneka happy, you must find the number of different arrays containing $N$ sets $[S_1, S_2, S_3, \ldots, S_N]$ such that: - Each set can only contain zero or more different integers from $1$ to $K$ . - There exists a way to rearrange the order of the array of sets into $[S'_1, S'_2, S'_3, \ldots, S'_N]$ such that $S'_i$ is a child of $S'_{i+1}$ for each $1\leq i\leq N-1$ .
Print the answer modulo $998\,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 $i$ such that the sets at index $i$ in the two arrays are different.
Given integers $N$ and $K$ . In order to make Chaneka happy, you must find the number of different arrays containing $N$ sets $[S_1, S_2, S_3, \ldots, S_N]$ such that: - Each set can only contain zero or more different integers from $1$ to $K$ . - There exists a way to rearrange the order of the array of sets into $[S'_1, S'_2, S'_3, \ldots, S'_N]$ such that $S'_i$ is a child of $S'_{i+1}$ for each $1\leq i\leq N-1$ .
Print the answer modulo $998\,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 $i$ such that the sets at index $i$ in the two arrays are different.
输入格式
The only line contains two integers $N$ and $K$ ( $1 \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 $998\,244\,353$ .
输入输出样例
输入 #1
2 2
输出 #1
11
输入 #2
1 3
输出 #2
8
输入 #3
3 1
输出 #3
4
In the first example, there are $11$ different arrays of sets possible, which are:
- $[\{\}, \{\}]$
- $[\{\}, \{1\}]$
- $[\{\}, \{1, 2\}]$
- $[\{\}, \{2\}]$
- $[\{1\}, \{\}]$
- $[\{1\}, \{1, 2\}]$
- $[\{1\}, \{2\}]$
- $[\{1, 2\}, \{\}]$
- $[\{1, 2\}, \{1\}]$
- $[\{2\}, \{\}]$
- $[\{2\}, \{1\}]$
- $[\{\}, \{\}]$
- $[\{\}, \{1\}]$
- $[\{\}, \{1, 2\}]$
- $[\{\}, \{2\}]$
- $[\{1\}, \{\}]$
- $[\{1\}, \{1, 2\}]$
- $[\{1\}, \{2\}]$
- $[\{1, 2\}, \{\}]$
- $[\{1, 2\}, \{1\}]$
- $[\{2\}, \{\}]$
- $[\{2\}, \{1\}]$
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted