CCHESS - COSTLY CHESS

no tags 

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...


hide comments
Archit Mittal: 2013-01-09 04:28:35

@lost:plz give some case in which it is impossible and can starting and destination point be same.


EDIT:
1. *If* its impossible to reach the destination then print -1.

2. 0 ≤ a, b, c, d ≤ 7. This is sufficient condition.

Last edit: 2012-08-22 18:46:55
abhiranjan: 2013-01-09 04:28:35

@numerix: :)

numerix: 2013-01-09 04:28:35

Could you please open it for more/all languages?
Edit: Thanks for doing so.

Last edit: 2011-02-22 06:28:35

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