Little Petya is learning to play chess. He has already learned how to move a king, a rook and a bishop. Let us remind you the rules of moving chess pieces. A chessboard is 64 square fields organized into an 8 × 8 table. A field is represented by a pair of integers (r, c) ― the number of the row and the number of the column (in a classical game the columns are traditionally indexed by letters). Each chess piece takes up exactly one field. To make a move is to move a chess piece, the pieces move by the following rules:
- A rook moves any number of fields horizontally or vertically.
- A bishop moves any number of fields diagonally.
- A king moves one field in any direction ― horizontally, vertically or diagonally.
The pieces move like that
Petya is thinking about the following problem: what minimum number of moves is needed for each of these pieces to move from field(r1, c1) to field (r2, c2) At that, we assume that there are no mZ http://www.2cto.com/kf/ware/vc/" target="_blank" class="keylink">vcmUgcGllY2VzIGJlc2lkZXMgdGhpcyBvbmUgb24gdGhlIGJvYXJkLiBIZWxwIGhpbSBzb2x2ZSB0aGlzIHByb2JsZW0uPC9wPgoKCgpJbnB1dAo8cD4KVGhlIGlucHV0IGNvbnRhaW5zIGZvdXIgaW50ZWdlcnMgPGVtPnI8L2VtPjEsPzxlbT5jPC9lbT4xLD88ZW0+cjwvZW0+Miw/PGVtPmM8L2VtPjIgKDE/odw/PGVtPnI8L2VtPjEsPzxlbT5jPC9lbT4xLD88ZW0+cjwvZW0+Miw/PGVtPmM8L2VtPjI/odw/OCkKIKGqIHRoZSBjb29yZGluYXRlcyBvZiB0aGUgc3RhcnRpbmcgYW5kIHRoZSBmaW5hbCBmaWVsZC4gVGhlIHN0YXJ0aW5nIGZpZWxkIGRvZXNu"t coincide with the final one.
You can assume that the chessboard rows are numbered from top to bottom 1 through 8, and the columns are numbered from left to right 1 through 8.
OutputPrint three space-separated integers: the minimum number of moves the rook, the bishop and the king (in this order) is needed to move from field (r1, c1) to field (r2, c2). If a piece cannot make such a move, print a 0 instead of the corresponding number.
Sample test(s) input4 3 1 6
output2 1 3
input5 5 5 6
output1 0 1
#include#include #include using namespace std; int abs(int x) {return x<0 -x:x;} int main() { int r1,c1,r2,c2,x11,x12,x21,x22,a,b,c; cin>>r1>>c1>>r2>>c2; x11=r1+c1,x21=r2+c2; x12=r1-c1,x22=r2-c2; if(c1==c2||r1==r2) a=1; else a=2; if(x11==x21||x12==x22) b=1; else if(abs(x21-x11)&1||abs(x22-x12)&1) b=0; else b=2; int sa=abs(r1-r2),sb=abs(c1-c2); c=max(sa,sb); cout<