代码随想录算法训练营第五十三天 | 图论part04

110. 字符串接龙

思路是要将字符串之间用线连起来,每个相邻的字符串只有一个字符不同。通过bfs来找到最短路径。要注意已经走过的路径要记录下来,包括走过的步数。

但是这一题并没有建图,而是将这个过程简化了,只是记录下了path。

cpp 复制代码
#include <iostream>
#include <vector>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <queue>

using namespace std;

int main() {
    int n;
    string beginStr, endStr, str;
    unordered_set<string> strSet;
    unordered_map<string, int> visitMap;
    queue<string> que;
    
    cin >> n;
    cin >> beginStr >> endStr;
    while (n--) {
        cin >> str;
        strSet.insert(str);
    }
    
    que.push(beginStr);
    visitMap.insert({beginStr, 1});
    
    while (!que.empty()) {
        string word = que.front();
        que.pop();
        int path = visitMap[word];
        
        for (int i = 0; i < word.size(); ++i) {
            string newWord = word;
            for (int j = 0; j < 26; ++j) {
                newWord[i] = 'a' + j;
                if (newWord == endStr) {
                    cout << path + 1 << endl;
                    return 0;
                }
                if (strSet.count(newWord) == 0) continue;
                if (visitMap.find(newWord) == visitMap.end()) {
                    visitMap.insert({newWord, path + 1});
                    que.push(newWord);
                }
            }
        }
    }
    cout << 0 << endl;
    return 0;
}

105. 有向图的完全可达性

cpp 复制代码
#include <iostream>
#include <vector>
#include <unordered_set>
#include <list>

using namespace std;

void dfs(const vector<list<int>> &graph, unordered_set<int> &visited, int node) {
    if (visited.count(node) != 0) return;
    
    visited.insert(node);
    for (int n : graph[node]) {
        dfs(graph, visited, n);
    }
}

int main() {
    int n, m, node1, node2;
    cin >> n >> m;
    
    vector<list<int>> graph(n + 1);
    while (m--) {
        cin >> node1 >> node2;
        graph[node1].push_back(node2);
    }
    
    unordered_set<int> visited;
    
    dfs(graph, visited, 1);
    
    if (visited.size() == n) cout << 1;
    else cout << -1;
    return 0;
}

06. 岛屿的周长

确实陷入惯性思维了

cpp 复制代码
#include <iostream>
#include <vector>

using namespace std;



int main() {
    int n, m;
    cin >> n >> m;
    vector<vector<int>> grid(n, vector<int>(m, 0));
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < m; ++j) {
            cin >> grid[i][j];
        }
    }
    
    int sum = 0, cover = 0;
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < m; ++j) {
            if (grid[i][j] == 1) {
                sum++;
                if (i-1 >=0 && grid[i-1][j] == 1) cover++;
                if (j-1 >=0 && grid[i][j-1] == 1) cover++;
            }
        }
    }
    cout << sum*4-cover*2;
}
相关推荐
涛ing4 小时前
32. C 语言 安全函数( _s 尾缀)
linux·c语言·c++·vscode·算法·安全·vim
独正己身5 小时前
代码随想录day4
数据结构·c++·算法
利刃大大8 小时前
【回溯+剪枝】找出所有子集的异或总和再求和 && 全排列Ⅱ
c++·算法·深度优先·剪枝
Rachela_z9 小时前
代码随想录算法训练营第十四天| 二叉树2
数据结构·算法
细嗅蔷薇@9 小时前
迪杰斯特拉(Dijkstra)算法
数据结构·算法
追求源于热爱!9 小时前
记5(一元逻辑回归+线性分类器+多元逻辑回归
算法·机器学习·逻辑回归
ElseWhereR9 小时前
C++ 写一个简单的加减法计算器
开发语言·c++·算法
Smark.9 小时前
Gurobi基础语法之 addConstr, addConstrs, addQConstr, addMQConstr
算法
S-X-S9 小时前
算法总结-数组/字符串
java·数据结构·算法
Joyner201810 小时前
python-leetcode-从中序与后序遍历序列构造二叉树
算法·leetcode·职场和发展