CF1906H.Twin Friends

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You meet two new friends who are twins. The name of the elder twin is AA , which consists of NN characters. While the name of the younger twin is BB , which consists of MM characters. It is known that NMN \leq M .

You want to call each of them with a nickname. For the elder twin, you want to pick any permutation of AA as the nickname. For the younger twin, you want to remove exactly MNM - N characters from any permutation of BB . Denote the nicknames of the elder twin and the younger twin as AA' and BB' , respectively.

You want the nicknames to satisfy the following requirement. For each ii that satisfies 1iN1 \leq i \leq N , BiB'_i must be equal to either AiA'_i or the next letter that follows alphabetically after AiA'_i (if such a next letter exists).

Determine the number of different pairs of nicknames (A,B)(A', B') that satisfy the requirement. Two pairs of nicknames are considered different if at least one of the nicknames are different. As the result might be large, find the answer modulo 998244353998\,244\,353 .

输入格式

The first line consists of two integers NN MM ( 1NM2000001 \leq N \leq M \leq 200\,000 ).

The second line consists of a string AA of length NN .

The third line consists of a string BB of length MM .

All strings consist of only upper-case letters.

输出格式

Output a single integer representing number of different pairs (A,B)(A', B') that satisfy the requirement, modulo 998244353998\,244\,353 .

输入输出样例

  • 输入#1

    3 4
    AMA
    ANAB

    输出#1

    9
  • 输入#2

    5 8
    BINUS
    BINANUSA

    输出#2

    120
  • 输入#3

    15 30
    BINUSUNIVERSITY
    BINANUSANTARAUNIVERSITYJAKARTA

    输出#3

    151362308
  • 输入#4

    4 4
    UDIN
    ASEP

    输出#4

    0

说明/提示

Explanation for the sample input/output #1

The 99 pairs are:

  • (AAM, AAN),
  • (AAM, ABN),
  • (AAM, BAN),
  • (AMA, ANA),
  • (AMA, ANB),
  • (AMA, BNA),
  • (MAA, NAA),
  • (MAA, NAB), and
  • (MAA, NBA).

Explanation for the sample input/output #2

The 120120 pairs are the pairs where AA' is a permutation of BINUS and B=AB' = A' .

首页