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...
hide comments
:.Mohib.::
2015-10-22 11:48:22
Very Nice Question....!! |
|
gandalf_:
2015-09-01 12:07:18
This is like NAKANJ except for the starting cell.
|
|
Rajat (1307086):
2015-05-31 18:18:58
Note that if a=c and b=d then output is 0 not a^2+b^2. |
|
shubham agrawal:
2015-04-10 21:40:37
How is the test case checked?
|
|
Rishabh:
2015-03-27 06:39:26
What will be the o/p of 0 1 2 1 ? What will be path ? |
|
akash agrawal:
2015-01-28 21:11:00
what is the way from 1,2 to 3,4 |
|
Ankit Sultana:
2015-01-23 19:46:15
Finally!!! Try this test case.. Out should be 2
|
|
Adamos Ttofari:
2014-04-17 22:24:32
Last edit: 2014-04-18 06:27:50 |
|
free mind ;):
2014-02-05 07:31:58
"IF" its Impossible :D
|
|
Ashwin. K:
2013-11-08 08:00:58
Same as NAKANJ except for the input format. |
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 |