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
anushka_ahuja: 2018-06-25 22:00:44

Ac in one go!!
First backtracking problem.
My 60th!!

gamapro: 2018-04-26 20:12:29

:) be careful with the overflow , finally AC :) with segment tree

danhnguyenhaui: 2018-03-25 16:31:07

Backtracking! it works for me :))

jonathanzong: 2017-08-24 16:15:54

Dijkstra's algorithm?

Shubham Jadhav: 2017-07-18 13:30:03

Nice problem on backtracking

gboduljak: 2017-06-18 18:44:36

"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. " is misleading.

Each next position must be inside modified chessboard, not only inside whole 10*10 grid. Spent a lot of time figuring out this.
Think about longest path problem :)

Last edit: 2017-06-18 18:46:47
syamphanindra: 2017-05-18 10:58:22

Hey take care while printing statements it gave me 3 WA even though my code is correct :)

iam_ss: 2017-02-12 19:21:46

<b>ANYONE SOLVING THIS PROBLEM , MUST READ THE BELOW QUOTED COMMENT</b>
"I think the description is too vague; in fact all squares in the picture can be reached "in any number of moves without resting in any square more than once", although different squares may require different routes. But in fact you can only use one single route and visit as many squares as possible.
I have been struggling quite a while before I understood that."-- amaroq

aditya730: 2017-01-06 19:33:26

Nice problem,but could've been phrased better to remove various ambiguities.Remember the final position for any move will have to lie within the "MODIFIED chess board"(the problem states just chess board).

Last edit: 2017-01-06 19:35:34
vengatesh15: 2016-12-25 06:35:54

MY 100 th...


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