CF1065E.Side Transmutations

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Consider some set of distinct characters AA and some string SS , consisting of exactly nn characters, where each character is present in AA .

You are given an array of mm integers bb ( b1<b2<<bmb_1 < b_2 < \dots < b_m ).

You are allowed to perform the following move on the string SS :

  1. Choose some valid ii and set k=bik = b_i ;
  2. Take the first kk characters of S=PrkS = Pr_k ;
  3. Take the last kk characters of S=SukS = Su_k ;
  4. Substitute the first kk characters of SS with the reversed SukSu_k ;
  5. Substitute the last kk characters of SS with the reversed PrkPr_k .

For example, let's take a look at S=S = "abcdefghi" and k=2k = 2 . Pr2=Pr_2 = "ab", Su2=Su_2 = "hi". Reversed Pr2=Pr_2 = "ba", Su2=Su_2 = "ih". Thus, the resulting SS is "ihcdefgba".

The move can be performed arbitrary number of times (possibly zero). Any ii can be selected multiple times over these moves.

Let's call some strings SS and TT equal if and only if there exists such a sequence of moves to transmute string SS to string TT . For the above example strings "abcdefghi" and "ihcdefgba" are equal. Also note that this implies S=SS = S .

The task is simple. Count the number of distinct strings.

The answer can be huge enough, so calculate it modulo 998244353998244353 .

输入格式

The first line contains three integers nn , mm and A|A| ( 2n1092 \le n \le 10^9 , 1mmin(n2,2105)1 \le m \le min(\frac n 2, 2 \cdot 10^5) , 1A1091 \le |A| \le 10^9 ) — the length of the strings, the size of the array bb and the size of the set AA , respectively.

The second line contains mm integers b1,b2,,bmb_1, b_2, \dots, b_m ( 1bin21 \le b_i \le \frac n 2 , b1<b2<<bmb_1 < b_2 < \dots < b_m ).

输出格式

Print a single integer — the number of distinct strings of length nn with characters from set AA modulo 998244353998244353 .

输入输出样例

  • 输入#1

    3 1 2
    1
    

    输出#1

    6
    
  • 输入#2

    9 2 26
    2 3
    

    输出#2

    150352234
    
  • 输入#3

    12 3 1
    2 5 6
    

    输出#3

    1
    

说明/提示

Here are all the distinct strings for the first example. The chosen letters 'a' and 'b' are there just to show that the characters in AA are different.

  1. "aaa"
  2. "aab" = "baa"
  3. "aba"
  4. "abb" = "bba"
  5. "bab"
  6. "bbb"
首页