#P1178F1. Short Colorful Strip

    ID: 2444 Type: RemoteJudge 3000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>combinatoricsdfs and similardp*2200

Short Colorful Strip

No submission language available for this problem.

Description

This is the first subtask of problem F. The only differences between this and the second subtask are the constraints on the value of mm and the time limit. You need to solve both subtasks in order to hack this one.

There are n+1n+1 distinct colours in the universe, numbered 00 through nn. There is a strip of paper mm centimetres long initially painted with colour 00.

Alice took a brush and painted the strip using the following process. For each ii from 11 to nn, in this order, she picks two integers 0ai<bim0 \leq a_i < b_i \leq m, such that the segment [ai,bi][a_i, b_i] is currently painted with a single colour, and repaints it with colour ii.

Alice chose the segments in such a way that each centimetre is now painted in some colour other than 00. Formally, the segment [i1,i][i-1, i] is painted with colour cic_i (ci0c_i \neq 0). Every colour other than 00 is visible on the strip.

Count the number of different pairs of sequences {ai}i=1n\{a_i\}_{i=1}^n, {bi}i=1n\{b_i\}_{i=1}^n that result in this configuration.

Since this number may be large, output it modulo 998244353998244353.

The first line contains a two integers nn, mm (1n5001 \leq n \leq 500, n=mn = m) — the number of colours excluding the colour 00 and the length of the paper, respectively.

The second line contains mm space separated integers c1,c2,,cmc_1, c_2, \ldots, c_m (1cin1 \leq c_i \leq n) — the colour visible on the segment [i1,i][i-1, i] after the process ends. It is guaranteed that for all jj between 11 and nn there is an index kk such that ck=jc_k = j.

Note that since in this subtask n=mn = m, this means that cc is a permutation of integers 11 through nn.

Output a single integer — the number of ways Alice can perform the painting, modulo 998244353998244353.

Input

The first line contains a two integers nn, mm (1n5001 \leq n \leq 500, n=mn = m) — the number of colours excluding the colour 00 and the length of the paper, respectively.

The second line contains mm space separated integers c1,c2,,cmc_1, c_2, \ldots, c_m (1cin1 \leq c_i \leq n) — the colour visible on the segment [i1,i][i-1, i] after the process ends. It is guaranteed that for all jj between 11 and nn there is an index kk such that ck=jc_k = j.

Note that since in this subtask n=mn = m, this means that cc is a permutation of integers 11 through nn.

Output

Output a single integer — the number of ways Alice can perform the painting, modulo 998244353998244353.

Samples

Sample Input 1

3 3
1 2 3

Sample Output 1

5

Sample Input 2

7 7
4 5 1 6 2 3 7

Sample Output 2

165

Note

In the first example, there are 55 ways, all depicted in the figure below. Here, 00 is white, 11 is red, 22 is green and 33 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 22.