代码随想录算法训练营第五十三天 | 图论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;
}
相关推荐
荒古前2 分钟前
龟兔赛跑 PTA
c语言·算法
Colinnian6 分钟前
Codeforces Round 994 (Div. 2)-D题
算法·动态规划
用户00993831430111 分钟前
代码随想录算法训练营第十三天 | 二叉树part01
数据结构·算法
shinelord明15 分钟前
【再谈设计模式】享元模式~对象共享的优化妙手
开发语言·数据结构·算法·设计模式·软件工程
დ旧言~21 分钟前
专题八:背包问题
算法·leetcode·动态规划·推荐算法
_WndProc39 分钟前
C++ 日志输出
开发语言·c++·算法
努力学习编程的伍大侠1 小时前
基础排序算法
数据结构·c++·算法
TENET信条1 小时前
代码随想录 day50 第十一章 图论part01
图论
XiaoLeisj1 小时前
【递归,搜索与回溯算法 & 综合练习】深入理解暴搜决策树:递归,搜索与回溯算法综合小专题(二)
数据结构·算法·leetcode·决策树·深度优先·剪枝