MKJUMPS - Making Jumps


A knight is a piece used in the game of chess. The chessboard itself is square array of cells. Each time a knight moves, its resulting position is two rows and one column, or two columns and one row away from its starting position. Thus a knight starting on row r, column c – which we’ll denote as (r, c) – can move to any of the squares (r-2,c-1), (r-2,c+1), (r-1,c-2), (r-1,c+2), (r+1,c-2), (r+1,c+2), (r+2,c-1), or (r+2,c+1). Of course, the knight may not move to any square that is not on the board.

Suppose the chessboard is not square, but instead has rows with variable numbers of columns, and with each row offset zero or more columns to the right of the row above it. The figure to the left illustrates one possible configuration. How many of the squares in such a modified chessboard can a knight, starting in the upper left square (marked with an asterisk), not reach in any number of moves without resting in any square more than once?

subir imagenes

If necessary, the knight is permitted to pass over regions that are outside the borders of the modified chessboard, but as usual, it can only move to squares that are within the borders of the board.

Input

There will be multiple cases to consider. The input for each case begins with an integer n, between 1 and 10, that specifies the number of rows in the modified chessboard. Following n there will be n pairs of integers, with the ith pair corresponding to the ith row of the chessboard. The first integer of each pair indicates the number of squares skipped at the beginning of the row. The second integer indicates the number of squares in the row (which will always be at least 1).The last case will be followed by the integer 0.

For example, input for the case illustrated by the chessboard shown above would be:

7 0 3 0 3 0 4 0 4 1 3 1 7 4 4

The maximum dimensions of the board will be 10 rows and 10 columns. That is, any modified chessboard specified by the input will fit completely on a 10 row, 10 column board.

Output

For each input case, display the case number (1, 2, …), and the number of squares that the knight can not reach. Display the results in the format shown in the examples below.

Example

Input:
7 0 3 0 3 0 4 0 4 1 3 1 7 4 4
3 0 3 0 3 0 3
2 0 1 2 1
0

Output:
Case 1, 4 squares can not be reached.
Case 2, 1 square can not be reached.
Case 3, 0 squares can not be reached.

hide comments
shivansh0408: 2016-12-23 15:18:43

AC in one go.
First backtrack problem.

tungtd95: 2016-11-10 05:56:02

why case 1 has 4 squares can not be reached?

sfd_team3: 2016-07-25 11:02:36

AC with binary_seach

kshubham02: 2016-06-06 02:28:15

For those getting repeated WAs... Make sure that you print 'square' if the answer is 1 and 'squares' otherwise.

scoobybutter: 2016-04-26 18:28:56

my 100th :)

spoj2121: 2016-04-24 20:23:08

1 square and 4 squares...check it..cost me 1WA

Arjav Patel: 2015-12-29 06:51:52

DFS and Backtracking!

Oasis: 2015-10-22 14:26:14

5 WA just because i forgot space between can and not.....

MAYANK NARULA: 2015-10-17 12:34:06

easy concept .. a bit more tough implementation on my first BACKTRACK !!!
AC
**Don't memoize !!

Avi Aryan: 2015-07-15 14:49:24

Initially the author says "and with each row offset zero or more columns to the right of the row above it."
In Input format he says "The first integer of each pair indicates the number of squares skipped at the beginning of the row."
So my question is that the offset is relative to row just above it or from the imaginary board of 10x10 ?
And what happens if offset of 1st row is not 0 ?


Added by:Camilo Andrés Varela León
Date:2007-05-11
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:North Central North America Regional Programming Contest - 2003