CCHESS - COSTLY CHESS

In the country of Rome, Chess is a royal game. For every move the players had to give some bucks to the Emperor Jurg. The LGMs or Little Green Men, are very good player of chess. But as chess is an expensive game, that's why it is royal, they asked you to help them find the minimum bucks which they had to pay for moving their knight from one position to another. Any number of steps can be used to reach the destination.

Constraints

The chess has a dimension of 8x8, and the index of left bottom cell (0, 0).

Knight move only in a standard way, i.e. 2 row and 1 column or 1 row and 2 column.

If in a step knight move from (a, b) to (c, d), then LGM had to pay a*c + b*d bucks to Emperor Jurg.

0 ≤ a, b, c, d ≤ 7

Input

There are 100-150 test cases. Each test case is composed of four space separated integers. The first two numbers, a, b, are the starting position of the knight and the next two, c, d, are the destination of the knight. Read up to End Of File.

Output

For each test case, print the minimum amount of bucks they had to pay in separate line. If it's impossible to reach the destination then print -1.

Example

Input:
2 5 5 2
4 7 3 2
1 2 3 4

Output:
42
78
18

Explanation for Test Case 1

For moving knight from (2, 5) to (5, 2) in minimum cost, one of the path is (2, 5) → (3, 3) → (5, 2)

Bucks paid:

  • (2, 5) → (3, 3) = (2 * 3 + 5 * 3) = 21
  • (3, 3) → (5, 2) = (3 * 5 + 3 * 2) = 21
  • Total cost = 42

To infinity and beyond...


Added by:abhiranjan
Date:2011-02-18
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All
Resource:IIITM Local Contest

hide comments
2015-09-01 12:07:18
This is like NAKANJ except for the starting cell.
CCHESS: (0, 0)
NAKANJ: (1,1)
2015-05-31 18:18:58 Rajat (1307086)
Note that if a=c and b=d then output is 0 not a^2+b^2.
2015-04-10 21:40:37 shubham agrawal
How is the test case checked?
do we have to read from a input file?
2015-03-27 06:39:26 Rishabh
What will be the o/p of 0 1 2 1 ? What will be path ?
2015-01-28 21:11:00 akash agrawal
what is the way from 1,2 to 3,4
2015-01-23 19:46:15 Ankit Sultana
Finally!!! Try this test case.. Out should be 2
0 0 1 0
2014-04-17 22:24:32 Adamos Ttofari


Last edit: 2014-04-18 06:27:50
2014-02-05 07:31:58 free mind ;)
"IF" its Impossible :D
2013-11-08 08:00:58 Ashwin. K
Same as NAKANJ except for the input format.
2013-01-09 04:28:35 昌(尼莫)
what will be the output for 1 2 2 1 ?
i'm getting 0 as the answer for this input .
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.