F: Trays



André Claude Marzipan is the head chef at the French restaurant Le Chaud Chien. He owns a vast number of baking trays, which come in two sizes: 11 foot by 11 foot, and 11 foot by 22 feet. He stores them along 33-foot deep shelves of various lengths. For example, on a shelf that is 55 feet long, he might store baking trays in either of the two ways shown below:

Figure G.1

Of course, there are many more than just these two ways, and in his off hours André often wonders how many different ways he can place trays on a given shelf. André is a bit of un maniaque du rangement (neat freak), so he insists that the trays are always aligned along the two axes defined by the shelf edges, that the edges of the trays are always 11 foot multiples away from any edge, and that no portion of a tray extends beyond the shelf. The matter is complicated by the fact that often there are locations on the shelf where he does not want to put any baking trays, due to leaks above the shelf, dents in the shelf’s surface, etc. Since André is more adept at cuisine than counting, he needs a little help.

Input🔗

The input consists of two lines: the first line will contain two integers m,nm, n, where 1m241 \le m \le 24 indicates the length of the shelf (which is always 33-feet deep) and nn indicates the number of bad locations on the shelf. The next line will contain nn coordinate pairs xyx y indicating the locations where trays should not be placed, where 0<x<m0 < x < m and 0<y<30 < y < 3. No location will have integer coordinates and coordinates are specified to the nearest hundredth. If n=0n = 0, this second line will be blank.

Output🔗

Output the number of ways that trays could be placed on the shelf.

Sample Input 1🔗

4 0
Plain text

Sample Output 1🔗

823
Plain text

Sample Input 2🔗

4 2
0.29 2.44 2.73 1.8
Plain text

Sample Output 2🔗

149
Plain text