zoukankan      html  css  js  c++  java
  • 694. Number of Distinct Islands

    问题描述:

    Given a non-empty 2D array grid of 0's and 1's, an island is a group of 1's (representing land) connected 4-directionally (horizontal or vertical.) You may assume all four edges of the grid are surrounded by water.

    Count the number of distinct islands. An island is considered to be the same as another if and only if one island can be translated (and not rotated or reflected) to equal the other.

    Example 1:

    11000
    11000
    00011
    00011
    

    Given the above grid map, return 1.

    Example 2:

    11011
    10000
    00001
    11011

    Given the above grid map, return 3.

    Notice that:

    11
    1
    

    and

     1
    11
    

    are considered different island shapes, because we do not consider reflection / rotation.

    Note: The length of each dimension in the given grid does not exceed 50.

    解题思路:

    可以通过平移进行转换的岛被认为是相似的岛。

    确定岛的形状可以用BFS/DFS(最近爱用BFS,但是BFS过于耗时。。)

    这道题的重点是如何生成一个岛的hashcode:

      - 观察题目可以看到,岛是由坐标组成。

      - C++中的container 并不具备有hash function的能力。

      - 我们可以将左上点挪至原点,并对其他的点做相同的平移: x- deltaX, y - deltaY

      - 用字符串记录路径并且作为唯一标识

    代码:

    class Solution {
    public:
        int numDistinctIslands(vector<vector<int>>& grid) {
            unordered_set<string> paths;
            for (int i=0; i<grid.size(); i++) {
                for (int j=0; j<grid.front().size(); j++) {
                    if(grid[i][j] == 1){
                        paths.insert(dfs(grid, i, j, i, j));
                    }
                }
            }
            return paths.size();
        }
    private:
        string dfs(vector<vector<int>> &grid, int i, int j, int deltaI, int deltaJ){
            grid[i][j] = 2;
            int m = grid.size();
            int n = grid[0].size();
            string path = to_string(i-deltaI) +"," + to_string(j-deltaJ);
            if(i-1 > -1 && grid[i-1][j] == 1){
                path.push_back('_');
                path.append(dfs(grid, i-1, j, deltaI, deltaJ));
            }
            if(j+1 < n && grid[i][j+1] == 1){
                path.push_back('_');
                path.append(dfs(grid, i, j+1, deltaI, deltaJ));
            }
            if(i+1 < m && grid[i+1][j] == 1){
                path.push_back('_');
                path.append(dfs(grid, i+1, j, deltaI, deltaJ));
            }
            if(j-1 > -1 && grid[i][j-1] == 1){
                path.push_back('_');
                path.append(dfs(grid, i, j-1, deltaI, deltaJ));
            }
            return path;
        }
    };

    用lambda表达式会更快一些:

    参考Tiejun的解法

    int numDistinctIslands(vector<vector<int>>& grid) {
            function<bool(int, int, int, int, string&)> dfs = 
                [&](int x, int y, int a, int b, string& path) -> bool {
                if (x < 0 || y < 0 || x >= grid.size() || y >= grid.front().size())
                    return false;
                if (grid[x][y] != 1) return false;
                grid[x][y] = 2;
                path.append(to_string(a));
                path.append(to_string(b));
                path.append(",");
                dfs(x + 1, y, a+1, b, path);
                dfs(x, y + 1, a, b+1, path);
                dfs(x - 1, y, a-1, b, path);
                dfs(x, y - 1, a, b-1, path);
                return true;
            };   
            
            unordered_set<string> paths;
            string path;
            for (int i=0; i<grid.size(); i++) {
                for (int j=0; j<grid.front().size(); j++) {
                    if (dfs(i, j, 0,0, path)) {
                        paths.insert(path);
                        path.clear(); 
                    }
                }
            }
            return paths.size();
        }
  • 相关阅读:
    QtDBus快速入门
    论Qt容器与STL
    JS中的!=、== 、!==、===的用法和区别
    JS操作JSON总结
    select2使用方法总结
    Entity Framework插入数据报错:Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.
    Windows登录类型及安全日志解析
    <script type="text/html"></script> js模版使用
    在 C# 中,(int) ,Int32.Parse() 和 Convert.toInt32() 三种方法的区别
    关于session,cookie,Cache
  • 原文地址:https://www.cnblogs.com/yaoyudadudu/p/11633242.html
Copyright © 2011-2022 走看看