4106: CF107 - D. Crime Management
[Creator : ]
Description
Zeyad wants to commit n crimes in Egypt and not be punished at the end. There are several types of crimes. For example, bribery is a crime but is not considered such when repeated twice. Therefore, bribery is not considered a crime when repeated an even number of times. Speeding is a crime, but is not considered such when repeated a number of times which is a multiple of five.
More specifically, $c$ conditions on crime repetitions are known. Each condition describes the crime type $t_i$ and its multiplicity $m_i$. If the number of times Zeyad committed the crime $t_i$ is a multiple of $m_i$, Zeyad will not be punished for crime $t_i$. Some crimes may be listed more than once. In this case fulfilling at least one condition for this crime is enough to not be punished for it. Of course, if for certain crime the number of times Zeyad committed it is zero, he is innocent with respect to this crime.
Now Zeyad is interested in a number of ways he can commit exactly n crimes without any punishment.
The order of commiting the crimes matters. More formally, two ways, sequences $w_1$ and $w_2$, of committing $n$ crimes are equal if $w_{1_i}=w_{2_i}$, for all $1 ≤i≤n$.
More specifically, $c$ conditions on crime repetitions are known. Each condition describes the crime type $t_i$ and its multiplicity $m_i$. If the number of times Zeyad committed the crime $t_i$ is a multiple of $m_i$, Zeyad will not be punished for crime $t_i$. Some crimes may be listed more than once. In this case fulfilling at least one condition for this crime is enough to not be punished for it. Of course, if for certain crime the number of times Zeyad committed it is zero, he is innocent with respect to this crime.
Now Zeyad is interested in a number of ways he can commit exactly n crimes without any punishment.
The order of commiting the crimes matters. More formally, two ways, sequences $w_1$ and $w_2$, of committing $n$ crimes are equal if $w_{1_i}=w_{2_i}$, for all $1 ≤i≤n$.
Input
The first line contains two integers $n, c\ (0 ≤n≤ 10^{18}, 0 ≤c≤ 1000)$ — the number of crimes Zeyad would like to commit and the number of conditions he is aware of.
Then the definitions for $c$ conditions follow. There are 26 types of crimes. Each crime definition consists of crime type — a capital Latin letter — and its multiplicity.
The multiplicity of each crime is a positive integer number and the product of all multiplicities does not exceed $123$. Some conditions may be repeated in the input more than once.
Crime of multiplicity $1$ is not yielding any punishment regardless of the number of times it was committed. The strictness of the law is compensated by the fact that it's non-mandatory.
Obviously, if some crime is not listed in the set of conditions, then Zeyad will not consider it, as committing it would unavoidably lead to the punishment.
Then the definitions for $c$ conditions follow. There are 26 types of crimes. Each crime definition consists of crime type — a capital Latin letter — and its multiplicity.
The multiplicity of each crime is a positive integer number and the product of all multiplicities does not exceed $123$. Some conditions may be repeated in the input more than once.
Crime of multiplicity $1$ is not yielding any punishment regardless of the number of times it was committed. The strictness of the law is compensated by the fact that it's non-mandatory.
Obviously, if some crime is not listed in the set of conditions, then Zeyad will not consider it, as committing it would unavoidably lead to the punishment.
Output
Output the number of different ways Zeyad can commit exactly n crimes with no punishment modulo 12345.
Sample 1 Input
5 2
A 1
B 2
Sample 1 Output
16
the 16 ways are: AAAAA, AAABB, AABAB, AABBA, ABAAB, ABABA, ABBAA, BAAAB, BAABA, BABAA, BBAAA, ABBBB, BABBB, BBABB, BBBAB, BBBBA.
Sample 2 Input
6 3
A 1
B 2
C 3
Sample 2 Output
113
Sample 3 Input
8 3
A 2
A 3
B 2
Sample 3 Output
128