CF57E.Chess

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Brian the Rabbit adores chess. Not long ago he argued with Stewie the Rabbit that a knight is better than a king. To prove his point he tries to show that the knight is very fast but Stewie doesn't accept statements without evidence. He constructed an infinite chessboard for Brian, where he deleted several squares to add some more interest to the game. Brian only needs to count how many different board squares a knight standing on a square with coordinates of (0,0)(0,0) can reach in no more than kk moves. Naturally, it is forbidden to move to the deleted squares.

Brian doesn't very much like exact sciences himself and is not acquainted with programming, that's why he will hardly be able to get ahead of Stewie who has already started solving the problem. Help Brian to solve the problem faster than Stewie.

输入格式

The first line contains two integers kk and nn ( 0<=k<=1018,0<=n<=4400<=k<=10^{18},0<=n<=440 ) which are correspondingly the maximal number of moves a knight can make and the number of deleted cells. Then follow nn lines, each giving the coordinates of a deleted square in the form (xi,yi)(x_{i},y_{i}) ( xi<=10,yi<=10|x_{i}|<=10,|y_{i}|<=10 ). All the numbers are integer, the deleted squares are different and it is guaranteed that the square (0,0)(0,0) is not deleted.

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

输出格式

You must print the answer on a single line. As it can be rather long, you should print it modulo 10000000071000000007 .

输入输出样例

  • 输入#1

    1 0
    

    输出#1

    9
    
  • 输入#2

    2 7
    -1 2
    1 2
    2 1
    2 -1
    1 -2
    -1 -2
    -2 -1
    

    输出#2

    9
    
首页