Adam and Carol are having a great time playing the Game of Matchings. The game is played on a string $S$ composed of $|S|$ lowercase English letters, $s_1 s_2 \dots s_{|S|}$. The goal is to find all matchings of a special kind of pattern $P$ in $S$. The pattern has length $N$ and is defined by a sequence of integers between $1$ and $26$.
We consider a contiguous substring $s_i s_{i+1} \dots s_{i+N-1}$ starting at position $i$ of $S$ a matching of pattern $P$ if there is a mapping from the numbers in $P$ to lowercase English letters such that the pattern is mapped to $s_i s_{i+1} ... s_{i+N-1}$ but no two distinct numbers are mapped to the same letter.
For instance, if $S$ is ''awawww'' and $P$ is $[10, 21, 10]$, the matchings of $P$ are the substrings of $S$ of length three starting at positions $1$ and $2$: ''awa'' and ''waw''. Note that ''www'' is not an occurence because pattern numbers $10$ and $21$ would both map to 'w'.
Adam and Carol lost the answer sheet and are not sure if they are finding all occurrences for some of the strings in the game. Given $S$ and $P$ can you find the number of matchings for them?