• leetcode 419


    题目说明:

    Given an 2D board, count how many different battleships are in it. The battleships are represented with 'X's, empty slots are represented with '.'s. You may assume the following rules:

    • You receive a valid board, made of only battleships or empty slots.
    • Battleships can only be placed horizontally or vertically. In other words, they can only be made of the shape 1xN (1 row, N columns) or Nx1 (N rows, 1 column), where N can be of any size.
    • At least one horizontal or vertical cell separates between two battleships - there are no adjacent battleships.

    Example:

    X..X
    ...X
    ...X
    

    In the above board there are 2 battleships.

    Invalid Example:

    ...X
    XXXX
    ...X
    

    This is an invalid board that you will not receive - as battleships will always have a cell separating between them.

    解法1思路:

    这里需要计算战舰队的数量count,可转换为计算每个战舰队位于最左上角的船只(我们称为战舰队头)。 用两个循环,对网格内的每一个格子进行遍历,若该格子为X(即有战舰),则分以下几种情况: 
    若在网格的最左上角(即i=0,j=0),则存在一个舰队,count自加1; 
    若在网格的最上角(即i=0),但不在最左边(即j!=0),则需要判断该位置的左边(即board[i][j-1])是否有战舰存在,若其左边不存在战舰,则该位置为战舰队头,count自加1; 
    若在网格的最左边(即j=0),但不在最上边(即i!=0),则需要判断该位置的上面(即board[i-1][j])是否有战舰存在,若其上面不存在战舰,则该位置为战舰队头,count自加1; 
    若战舰不在最左边也不在最上边(即i!=0且j!=0),则需要判断该战舰的左边和上面是否还有战舰存在,若其左边和上面都不存在战舰,则该位置为战舰队头,count自加1; 
    其余情况,战舰都不属于战舰队头。

    解法1代码:

    int countBattleships(vector<vector<char>>& board)
    {
        int counter = 0;
        for (int i = 0; i < board.size(); i ++) {
            for (int j = 0; j < board[i].size(); j ++) {
                if (board[i][j] == 'X') {
                    if (i == 0 && j == 0)
                        counter ++;
                    else if (i == 0 && j != 0 && board[i][j - 1] == '.')
                        counter ++;
                    else if (j == 0 && i != 0 && board[i - 1][j] == '.')
                        counter ++;
                    else if (i != 0 && j != 0 && board[i - 1][j] == '.' && board[i][j - 1] == '.')
                        counter ++;
                }
                
            }
        }
    
        return counter;
    }

    解法2思路:

    和解法1相似,只是这种解法是从反面分析,逐项排除非battleships的项,最后留下符合条件的项,这种剪枝策励在leetcode的算法题中非常常见。

    解法2代码:

    int countBattleships(vector<vector<char>>& board)
    {
        int counter = 0;
        for (int i = 0; i < board.size(); i ++) {
            for (int j = 0; j < board[i].size(); j ++) {
                if (board[i][j] == '.')
                    continue;
                if (j > 0 && board[i][j - 1] == 'X')
                    continue;
                if (i > 0 && board[i - 1][j] == 'X')
                    continue;
                
                ++ counter;
            }
        }
        
        return counter;
    }

    部分引用自:

    http://blog.5ibc.net/p/94878.html

    http://blog.csdn.net/mebiuw/article/details/52876700

  • 相关阅读:
    制作类似QQ截图软件
    XML文件与实体类的互相转换
    MFC中真彩工具条的制作方法
    MFC使用技巧集锦(1)(转载)
    抽象工厂模式与工厂方法模式区别
    VC数据库编程分析
    如何让工具条显示256色图像
    华为软件编程规范和范例
    设计模式总结性试题
    VC++中基于ADO操作ACCESS数据库,FLEXGRID控件的综合应用
  • 原文地址:https://www.cnblogs.com/maizi-1993/p/6035092.html
Copyright © 2020-2023  润新知