A12570 | Short Colorful Strip
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This is the first subtask of problem F. The only differences between this and the second subtask are the constraints on the value of $m$ and the time limit. You need to solve both subtasks in order to hack this one.
There are $n+1$ distinct colours in the universe, numbered $0$ through $n$ . There is a strip of paper $m$ centimetres long initially painted with colour $0$ .
Alice took a brush and painted the strip using the following process. For each $i$ from $1$ to $n$ , in this order, she picks two integers $0 \leq a_i < b_i \leq m$ , such that the segment $[a_i, b_i]$ is currently painted with a single colour, and repaints it with colour $i$ .
Alice chose the segments in such a way that each centimetre is now painted in some colour other than $0$ . Formally, the segment $[i-1, i]$ is painted with colour $c_i$ ( $c_i \neq 0$ ). Every colour other than $0$ is visible on the strip.
Count the number of different pairs of sequences $\{a_i\}_{i=1}^n$ , $\{b_i\}_{i=1}^n$ that result in this configuration.
Since this number may be large, output it modulo $998244353$ .
There are $n+1$ distinct colours in the universe, numbered $0$ through $n$ . There is a strip of paper $m$ centimetres long initially painted with colour $0$ .
Alice took a brush and painted the strip using the following process. For each $i$ from $1$ to $n$ , in this order, she picks two integers $0 \leq a_i < b_i \leq m$ , such that the segment $[a_i, b_i]$ is currently painted with a single colour, and repaints it with colour $i$ .
Alice chose the segments in such a way that each centimetre is now painted in some colour other than $0$ . Formally, the segment $[i-1, i]$ is painted with colour $c_i$ ( $c_i \neq 0$ ). Every colour other than $0$ is visible on the strip.
Count the number of different pairs of sequences $\{a_i\}_{i=1}^n$ , $\{b_i\}_{i=1}^n$ that result in this configuration.
Since this number may be large, output it modulo $998244353$ .
输入格式
The first line contains a two integers $n$ , $m$ ( $1 \leq n \leq 500$ , $n = m$ ) — the number of colours excluding the colour $0$ and the length of the paper, respectively.
The second line contains $m$ space separated integers $c_1, c_2, \ldots, c_m$ ( $1 \leq c_i \leq n$ ) — the colour visible on the segment $[i-1, i]$ after the process ends. It is guaranteed that for all $j$ between $1$ and $n$ there is an index $k$ such that $c_k = j$ .
Note that since in this subtask $n = m$ , this means that $c$ is a permutation of integers $1$ through $n$ .
The second line contains $m$ space separated integers $c_1, c_2, \ldots, c_m$ ( $1 \leq c_i \leq n$ ) — the colour visible on the segment $[i-1, i]$ after the process ends. It is guaranteed that for all $j$ between $1$ and $n$ there is an index $k$ such that $c_k = j$ .
Note that since in this subtask $n = m$ , this means that $c$ is a permutation of integers $1$ through $n$ .
输出格式
Output a single integer — the number of ways Alice can perform the painting, modulo $998244353$ .
输入输出样例
输入 #1
3 3 1 2 3
输出 #1
5
输入 #2
7 7 4 5 1 6 2 3 7
输出 #2
165
In the first example, there are $5$ ways, all depicted in the figure below. Here, $0$ is white, $1$ is red, $2$ is green and $3$ is blue.

Below is an example of a painting process that is not valid, as in the second step the segment 1 3 is not single colour, and thus may not be repainted with colour $2$ .


Below is an example of a painting process that is not valid, as in the second step the segment 1 3 is not single colour, and thus may not be repainted with colour $2$ .

C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted