• 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();
        }
  • 相关阅读:
    MySQL索引类型
    Spring+Quartz框架实现定时任务(集群,分布式)
    搭建Nginx+Java环境(转)
    windows环境下将csv文件导入mysql
    哈利波特折扣
    第二阶段个人总结06
    第二阶段个人总结05
    第二阶段个人总结04
    第二阶段个人总结03
    学习进度条——第13周
  • 原文地址:https://www.cnblogs.com/yaoyudadudu/p/11633242.html
Copyright © 2020-2023  润新知