The Attack of Queen CodeChef Solution | CodeChef Problem Solution 2022
Chef has started developing interest in playing chess, and was learning how the Queen moves.
Chef has an empty chessboard. He places a Queen at and wonders - What are the number of cells that are under attack by the Queen?
Solution Click Below:- CLICK HERE
Notes:
- The top-left cell is , the top-right cell is , the bottom-left cell is and the bottom-right cell is .
- The Queen can be moved any number of unoccupied cells in a straight line vertically, horizontally, or diagonally.
- The cell on which the Queen is present, is not said to be under attack by the Queen.
Input Format
- The first line contains a single integer - the number of test cases. Then the test cases follow.
- The first and only line of each test case contains three integers , and , as described in the problem statement.
Output Format
For each test case, output in a single line, the total number of cells that are under attack by the Queen.
Constraints
Sample Input 1
5
1 1 1
3 2 2
3 2 1
2 2 2
150 62 41
Sample Output 1
0
8
6
3
527
Explanation
Test case 1: The only cell on the board is . Since Queen stands on this cell, it is not under attack.
Test case 2: The Queen can attack the following cells: .
Test case 3: The Queen can attack the following cells: .
Test case 4: The Queen can attack the following cells: .
Join Now for Solution:-
No comments:
Post a Comment