图论第6天

提高效率!!!两道题+看并查集

841.钥匙和房间

忘了把visited 加引用了:&

cpp 复制代码
class Solution {
public:
    bool canVisitAllRooms(vector<vector<int>>& rooms) {
        vector<int>visited(rooms.size(),false);
        dfs(rooms,visited,0);
        for(int i = 0;i < rooms.size();i++){
            if(visited[i] == false)return false;
        }
        return true;
    }
    void dfs(vector<vector<int>>& rooms,vector<int>&visited,int key){
        if(visited[key] == true)return;
        visited[key] = true;
        vector<int>keys = rooms[key];
        for(int i = 0; i < keys.size();i++){
            dfs(rooms,visited,keys[i]);
        }
    }
};

463. 岛屿的周长

第一是不要算重边即可。

第二是有两个挨着的岛屿就总周长减2。

第三这题不用dfs or bfs。

cpp 复制代码
class Solution {
public:
    int islandPerimeter(vector<vector<int>>& grid) {
        int island_num = 0;
        int count = 0;
        for(int i = 0;i < grid.size();i++){
            for(int j = 0;j < grid[0].size();j++){
                if(grid[i][j] == 1){
                    island_num++;
                    if((i - 1) >= 0 && grid[i-1][j] == 1)count++;
                    if((j-1) >= 0 && grid[i][j-1] == 1)count++;
                }
            }
        }
        return island_num * 4 - count * 2;
    }
};

图论还剩三道题,明天争取拿下!!!

相关推荐
old_power18 分钟前
【PCL】Segmentation 模块—— 基于图割算法的点云分割(Min-Cut Based Segmentation)
c++·算法·计算机视觉·3d
Bran_Liu32 分钟前
【LeetCode 刷题】字符串-字符串匹配(KMP)
python·算法·leetcode
涛ing35 分钟前
21. C语言 `typedef`:类型重命名
linux·c语言·开发语言·c++·vscode·算法·visual studio
Jcqsunny1 小时前
[分治] FBI树
算法·深度优先··分治
黄金小码农1 小时前
C语言二级 2025/1/20 周一
c语言·开发语言·算法
謓泽2 小时前
【数据结构】二分查找
数据结构·算法
00Allen003 小时前
Java复习第四天
算法·leetcode·职场和发展
攻城狮7号3 小时前
【10.2】队列-设计循环队列
数据结构·c++·算法
懒羊羊大王&4 小时前
179最大数(贪心算法)分析+源码+证明
算法·贪心算法
小小志爱学习4 小时前
提升 Go 开发效率的利器:calc_util 工具库
数据结构·算法·golang