首页 > 其他 > 详细

(Easy) Available Captures for Rook LeetCode

时间:2019-08-05 18:03:03      阅读:103      评论:0      收藏:0      [点我收藏+]

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;
        
    }
}

 

(Easy) Available Captures for Rook LeetCode

原文:https://www.cnblogs.com/codingyangmao/p/11304440.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!