IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> leetcode 803 打砖块 -> 正文阅读

[数据结构与算法]leetcode 803 打砖块

前言

题目:803. 打砖块

参考题解:打砖块-力扣官方题解


提交代码

这道题目还是有难度的。难度有两点:

  • 倒着使用并查集。

  • 使用一个虚拟的根节点。

#include <vector>
#include <iostream>

using namespace std;

class UnionFind {
private:
    vector<int> parent; // 存储并查集
    vector<int> size; // size[i]存储以i节点为根的集合的大小
public:
    UnionFind(int n){
        parent.resize(n);
        size.resize(n);
        for(int i=0; i<n; i++){
            parent[i] = i;
            size[i] = 1;
        }
    }

    // 查找所在集合的根节点
    int findRoot(int x){
        while(x != parent[x])
            x = parent[x];
        return x;
    }

    // 判断两个节点是否在一个集合里面
    bool isConnect(int x, int y){
        return findRoot(x) == findRoot(y);
    }

    // 集合合并.将x集合合并到y上
    void unionSet(int x, int y){
        int root_x = findRoot(x);
        int root_y = findRoot(y);
        if(root_x == root_y){
            ;
        }else{
            parent[root_x] = root_y;
            size[root_y] += size[root_x];
        }
    }

    // 返回节点x所在集合的元素个数
    int getSize(int x){
        int root_x = findRoot(x);
        return size[root_x];
    }
};


class Solution {
private:
    int rows;
    int cols;
    vector<vector<int>> DIRECTIONS = {{-1,0}, {1,0}, {0,-1}, {0,1}};

    int getIndex(int x, int y){
        return x*cols + y;
    }
    
    bool inArea(int x, int y){
        return (x>=0 && x<rows && y>=0 && y<cols);
    }

public:
    vector<int> hitBricks(vector<vector<int>>& grid, vector<vector<int>>& hits) {
        // 核心思路:去除hits --> 建立并查集 --> 反向添加hits,统计差异

        // 第一步:拷贝grid->copy
        rows = grid.size();
        cols = grid[0].size();
        vector<vector<int>> copy(rows,vector<int>(cols,0));
        for(int i=0; i<rows; i++){
            for(int j=0; j<cols; j++)
                copy[i][j] = grid[i][j];
        }

        // 第二步:去除hits
        for(auto hit : hits){
            copy[hit[0]][hit[1]] = 0;
        }

        // 第三步:建立copy的并查集
        UnionFind uf(rows*cols+1);
        
         给所有的顶部元素添加默认的(虚拟)根节点
        for(int j=0; j<cols; j++){
            if(copy[0][j] == 1)
                uf.unionSet(getIndex(0,j), rows*cols);
        }

         建立并查集。从上向下,从左向右遍历。所以当上方、左侧存在元素的时候,进行合并操作。四周没有元素,默认自成一个集合
        for(int i=1; i<rows; i++){
            for(int j=0; j<cols; j++){
                if(copy[i][j] == 1){
                    if(copy[i-1][j] == 1)
                        uf.unionSet(getIndex(i-1,j), getIndex(i,j));
                    if(j>0 && copy[i][j-1]==1)
                        uf.unionSet(getIndex(i,j-1), getIndex(i,j));
                }
            }
        }

        // 第四步:反向添加hits。反向操作,可以不被前面的hit干扰
        int hitsLen = hits.size();
        vector<int> result(hitsLen,0);
        for(int i=hitsLen-1; i>=0; i--){
            int x = hits[i][0];
            int y = hits[i][1];

            if(grid[x][y] == 0) // 原本没有砖,啥也敲不了
                continue;
            
            int origin = uf.getSize(rows*cols); // 当前与顶部相连砖块个数

            if(x == 0) // 第一行与虚拟根节点相连。与第三步中的内容相同
                uf.unionSet(getIndex(x,y),rows*cols);

            copy[x][y] = 1; // 并将四周元素连接起来;本次补上砖块的连接,仅对本次敲击有作用
            for(auto dirt : DIRECTIONS){
                int new_x = x + dirt[0];
                int new_y = y + dirt[1];
                if(inArea(new_x,new_y) && copy[new_x][new_y]==1){
                    uf.unionSet(getIndex(x,y),getIndex(new_x,new_y));
                }
            }
            int current = uf.getSize(rows*cols);

            // (current - origin -1)等于-1表示补上砖块后,没有连上顶部;等于0表示敲击,只把自己消灭,没有掉落;其中都算上了虚拟节点,相减不影响
            result[i] = (current - origin -1) == -1 ? 0:(current - origin -1); 
        }

        return result;

    }
};

int main(void){
    vector<vector<int>> grid = {{1,0,1},{1,1,1}};
    vector<vector<int>> hits = {{0,0},{0,2},{1,1}};

    // vector<vector<int>> grid = {{1,0,0,0},{1,1,0,0}}; 
    // vector<vector<int>> hits = {{1,1},{1,0}};

    Solution s;
    vector<int> result = s.hitBricks(grid,hits);
    for(auto i : result)
        cout<<i<<" ";
    cout<<endl;
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2021-11-26 09:06:11  更:2021-11-26 09:07:39 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 12:26:57-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码