Available Captures For Rook Problem


Description

LeetCode Problem 999.

On an 8 x 8 chessboard, there is exactly one white rook ‘R’ and some number of white bishops ‘B’, black pawns ‘p’, and empty squares ‘.’.

When the rook moves, it chooses one of four cardinal directions (north, east, south, or west), then moves in that direction until it chooses to stop, reaches the edge of the board, captures a black pawn, or is blocked by a white bishop. A rook is considered attacking a pawn if the rook can capture the pawn on the rook’s turn. The number of available captures for the white rook is the number of pawns that the rook is attacking.

Return the number of available captures for the white rook.

Example 1:

1
2
3
4
5
6
7
8
9
10
11
Input: board = 
[[".",".",".",".",".",".",".","."],
[".",".",".","p",".",".",".","."],
[".",".",".","R",".",".",".","p"],
[".",".",".",".",".",".",".","."],
[".",".",".",".",".",".",".","."],
[".",".",".","p",".",".",".","."],
[".",".",".",".",".",".",".","."],
[".",".",".",".",".",".",".","."]]
Output: 3
Explanation: In this example, the rook is attacking all the pawns.

Example 2:

1
2
3
4
5
6
7
8
9
10
11
Input: board = 
[[".",".",".",".",".",".",".","."],
[".","p","p","p","p","p",".","."],
[".","p","p","B","p","p",".","."],
[".","p","B","R","B","p",".","."],
[".","p","p","B","p","p",".","."],
[".","p","p","p","p","p",".","."],
[".",".",".",".",".",".",".","."],
[".",".",".",".",".",".",".","."]]
Output: 0
Explanation: The bishops are blocking the rook from attacking any of the pawns.

Example 3:

1
2
3
4
5
6
7
8
9
10
11
Input: board = 
[[".",".",".",".",".",".",".","."],
[".",".",".","p",".",".",".","."],
[".",".",".","p",".",".",".","."],
["p","p",".","R",".","p","B","."],
[".",".",".",".",".",".",".","."],
[".",".",".","B",".",".",".","."],
[".",".",".","p",".",".",".","."],
[".",".",".",".",".",".",".","."]]
Output: 3
Explanation: The rook is attacking the pawns at positions b5, d6, and f5.

Constraints:

  • board.length == 8
  • board[i].length == 8
  • board[i][j] is either ‘R’, ‘.’, ‘B’, or ‘p’
  • There is exactly one cell with board[i][j] == ‘R’


Sample C++ Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
class Solution {
public:
    int numRookCaptures(vector<vector<char>>& board) {
        int cap = 0, row, col;
        //Find the position of the rook
        for (int i = 0; i < 8; i++) {
            for (int j = 0; j < 8; j++) {
                if (board[i][j] == 'R') {
                    row = i;
                    col = j;
                }
            }
        }
		
        //Move in upward direction to check for any possible captures
        int i = row, j = col;
        while (i >= 0 && board[i][j] != 'B') {
            if (board[i][j] == 'p') {
                cap++;
                break;
            }            
            i--;
        }
		
        //Move in downward direction to check for any possible captures
        i = row, j = col;
        while (i <= 7 && board[i][j] != 'B') {
            if (board[i][j] == 'p') {
                cap++;
                break;
            }            
            i++;
        }
		
        //Move in leftward direction to check for any possible captures
        i = row, j = col;
        while (j >= 0 && board[i][j] != 'B') {
            if (board[i][j] == 'p') {
                cap++;
                break;
            }            
            j--;
        }
		
        //Move in rightward direction to check for any possible captures
        i = row, j = col;
        while (j <= 7 && board[i][j] != 'B') {
            if (board[i][j] == 'p') {
                cap++;
                break;
            }
            j++;
        }
        
        return cap;
    }
};




Related Posts

Transpose Matrix Problem

LeetCode 867. Given a 2D integer array matrix, return the...

Spiral Matrix III Problem

LeetCode 885. You start at the cell (rStart, cStart) of...

Minimize Malware Spread II Problem

LeetCode 928. You are given a network of n nodes...

Max Increase To Keep City Skyline Problem

LeetCode 807. There is a city composed of n x...

Making A Large Island Problem

LeetCode 827. You are given an n x n binary...

Image Overlap Problem

LeetCode 835. You are given two images, img1 and img2,...