BABY - Baby


A baby tries to solve the well-known eight-queen puzzle: the problem of placing eight chess queens on an 8×8 chessboard so that no two queens share the same row, column, or diagonal. The baby understands the concept of row and column quite well but diagonal is not very clear to her. As a result she succeeds placing eight queens on the board so that no two queens share the same row or column but there remains the possibility that some queens share the same diagonal.

Given baby's queens (a solution by the baby) and a valid eight-queen solution, it is possible to move baby's queens to positions of queens in the valid solution. Assume that in a single move, a queen can be moved one unit row-wise or column-wise into an unoccupied position.

Write a program to find the minimum number of moves required to move baby's queens to positions of queens in the valid solution. The program should be usable for a more general n -queen puzzle where n queens are placed on an n×n chessboard, 4 ≤ n ≤ 16 . Assume that rows and columns of the chessboard are numbered 1, 2 ... n .

Input

The input consists of multiple test cases.

Each case begins with a line containing the integer n .

Each of the next two lines contains a sequence of n integers. Integers in the first line represent column numbers of baby's queens appearing in rows 1, 2 ... n respectively. In the same way, the second line contains column numbers of queens in the given valid solution. A space separates two consecutive integers in the sequence.

A line containing a zero '0' as the first character follows the last case.

Output

For each test case, print the minimum number of moves required.

Example

Sample Input
4 
1 2 3 4 
3 1 4 2 
4 
3 2 4 1 
3 1 4 2 
5 
5 3 1 4 2 
5 3 1 4 2 
5 
1 5 2 4 3 
3 1 4 2 5 
0

Sample Output
6 
2 
0 
8

hide comments
janvijay1997: 2016-06-06 15:24:39

Take care of you DP table size to avoid TLE !

overflow_1378: 2016-02-29 21:38:44

Isn't it a maximum matching problem?
I mean it works with maximum matching...
with a good complexity

Last edit: 2016-02-29 21:42:16
sai krishna: 2016-02-22 08:18:37

Just changed cin to scanf and got AC ;)

sbansalcs: 2015-10-23 13:25:12

Getting TLE :(
Complexity: O(n^2).

A small change and it worked. Maybe because Test Cases were that way.

Last edit: 2015-10-23 13:45:04
Archit Jain: 2014-10-08 21:41:15

awesome...

shashank: 2014-05-28 01:14:01

beautiful problem ...!!

Petr: 2014-05-11 10:10:25

why time limit exceeded ?

dirty: 2013-06-20 17:04:19

there is no image :( :(

~!(*(@*!@^&: 2010-05-02 22:49:30

my old pascal works well :D


Added by:Jimmy
Date:2008-12-09
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:ACM Kanpur 2007