CF107D.Crime Management

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Zeyad wants to commit nn 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, cc conditions on crime repetitions are known. Each condition describes the crime type tit_{i} and its multiplicity mim_{i} . If the number of times Zeyad committed the crime tit_{i} is a multiple of mim_{i} , Zeyad will not be punished for crime tit_{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 nn crimes without any punishment.

The order of commiting the crimes matters. More formally, two ways, sequences w1w1 and w2w2 , of committing nn crimes are equal if w1i=w2iw1_{i}=w2_{i} , for all 1<=i<=n1<=i<=n .

输入格式

The first line contains two integers nn and cc ( 0<=n<=1018,0<=c<=10000<=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 cc conditions follow. There are 2626 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 123123 . Some conditions may be repeated in the input more than once.

Crime of multiplicity 11 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.

Please, do not use the %lld specificator to read or write 64-bit integers in С++. It is preferred to use the cin stream (you may also use the %I64d specificator).

输出格式

Output the number of different ways Zeyad can commit exactly nn crimes with no punishment modulo 1234512345 .

输入输出样例

  • 输入#1

    5 2
    A 1
    B 2
    

    输出#1

    16
    
  • 输入#2

    6 3
    A 1
    B 2
    C 3
    

    输出#2

    113
    
  • 输入#3

    8 3
    A 2
    A 3
    B 2
    

    输出#3

    128
    

说明/提示

In the first test case, the 16 ways are: AAAAA, AAABB, AABAB, AABBA, ABAAB, ABABA, ABBAA, BAAAB, BAABA, BABAA, BBAAA, ABBBB, BABBB, BBABB, BBBAB, BBBBA.

首页