CF47D.Safe

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Vasya tries to break in a safe. He knows that a code consists of nn numbers, and every number is a 0 or a 1. Vasya has made mm attempts to enter the code. After each attempt the system told him in how many position stand the right numbers. It is not said in which positions the wrong numbers stand. Vasya has been so unlucky that he hasn’t entered the code where would be more than 5 correct numbers. Now Vasya is completely bewildered: he thinks there’s a mistake in the system and it is self-contradictory. Help Vasya — calculate how many possible code variants are left that do not contradict the previous system responses.

输入格式

The first input line contains two integers nn and mm ( 6<=n<=35,1<=m<=106<=n<=35,1<=m<=10 ) which represent the number of numbers in the code and the number of attempts made by Vasya. Then follow mm lines, each containing space-separated sis_{i} and cic_{i} which correspondingly indicate Vasya’s attempt (a line containing nn numbers which are 0 or 1) and the system’s response (an integer from 0 to 5 inclusively).

输出格式

Print the single number which indicates how many possible code variants that do not contradict the mm system responses are left.

输入输出样例

  • 输入#1

    6 2
    000000 2
    010100 4
    

    输出#1

    6
    
  • 输入#2

    6 3
    000000 2
    010100 4
    111100 0
    

    输出#2

    0
    
  • 输入#3

    6 3
    000000 2
    010100 4
    111100 2
    

    输出#3

    1
    
首页