(Easy) Available Captures for Rook LeetCode

Description

On an 8 x 8 chessboard, there is one white rook.  There also may be empty squares, white bishops, and black pawns.  These are given as characters 'R', '.', 'B', and 'p' respectively. Uppercase characters represent white pieces, and lowercase characters represent black pieces.

The rook moves as in the rules of Chess: it chooses one of four cardinal directions (north, east, west, and south), then moves in that direction until it chooses to stop, reaches the edge of the board, or captures an opposite colored pawn by moving to the same square it occupies.  Also, rooks cannot move into the same square as other friendly bishops.

Return the number of pawns the rook can capture in one move.

 

Example 1:

Input: [[".",".",".",".",".",".",".","."],[".",".",".","p",".",".",".","."],[".",".",".","R",".",".",".","p"],[".",".",".",".",".",".",".","."],[".",".",".",".",".",".",".","."],[".",".",".","p",".",".",".","."],[".",".",".",".",".",".",".","."],[".",".",".",".",".",".",".","."]]
Output: 3
Explanation: 
In this example the rook is able to capture all the pawns.

Example 2:

Input: [[".",".",".",".",".",".",".","."],[".","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: 
Bishops are blocking the rook to capture any pawn.

Example 3:

Input: [[".",".",".",".",".",".",".","."],[".",".",".","p",".",".",".","."],[".",".",".","p",".",".",".","."],["p","p",".","R",".","p","B","."],[".",".",".",".",".",".",".","."],[".",".",".","B",".",".",".","."],[".",".",".","p",".",".",".","."],[".",".",".",".",".",".",".","."]]
Output: 3
Explanation: 
The rook can capture the pawns at positions b5, d6 and f5.

 

Note:

  1. board.length == board[i].length == 8
  2. board[i][j] is either 'R', '.', 'B', or 'p'
  3. There is exactly one cell with board[i][j] == 'R'

Solution

class Solution {
    public int numRookCaptures(char[][] board) {
        
        //special case
        
        if(board ==null || board.length ==0|| board[0].length ==0){
            return 0;
        }
        
        // first decide where the Rook is. 
        int row = board.length;
        int col = board[0].length;
        
        int pos_rook_row=0;
        int pos_rook_col=0;
        
        for(int i = 0; i<row; i++ ){
            
            for(int j = 0; j< col; j++){
                
                
                if(board[i][j]=='R'){
                    
                    pos_rook_row = i;
                    pos_rook_col = j;
                }
                 
            }
        }
        
        int result = 0; 
        
        //for directions.
  
        //up
              for(int i =pos_rook_row; i>=0; i--){
            
            if(board[i][pos_rook_col]=='B'){
                
                break;
            }
            
            else if(board[i][pos_rook_col]=='p'){
                result = result +1;
                break;
            }
        }
        //down
          for(int i =pos_rook_row; i<row; i++){
            
            if(board[i][pos_rook_col]=='B'){
                
                break;
            }
            
            else if(board[i][pos_rook_col]=='p'){
                result = result +1;
                break;
            }
        }
        
        //left
              for(int j =pos_rook_col; j>=0; j--){
            
            if(board[pos_rook_row][j]=='B'){
                
                break;
            }
            
            else if(board[pos_rook_row][j]=='p'){
                result = result +1;
                break;
            }
        }
        
        
        //right
                 for(int j =pos_rook_col; j<col; j++){
            
            if(board[pos_rook_row][j]=='B'){
                
                break;
            }
            
            else if(board[pos_rook_row][j]=='p'){
                result = result +1;
                break;
            }
        }
        
        return result;
        
    }
}

 

posted @ 2019-08-05 17:40  CodingYM  阅读(190)  评论(0编辑  收藏  举报