算法训练营|图论第一天 98. 所有可达路径

题目:所有可到达路径

题目链接:

98. 所有可达路径 (kamacoder.com)

解题思路:

邻接矩阵,注意没有result == -1时候特判

cpp 复制代码
#include<bits/stdc++.h>
using namespace std;
vector<vector<int>>result;
vector<int>path;
void dfs(vector<vector<int>>grid, int x, int n) {
	if (x == n) {
		result.push_back(path);
		return;
	}
	for (int i = 1; i <= n; i++) {
		if (grid[x][i] == 1) {
			path.push_back(i);
			dfs(grid, i, n);
			path.pop_back();
		}
	}
}
int main() {
	int n, m;
	cin >> n >> m;
	vector<vector<int>>grid(n + 1, vector<int>(n + 1, 0));
	while (m--) {
		int s, t;
		cin >> s >> t;
		grid[s][t] = 1;
	}
	path.push_back(1);
	dfs(grid, 1, n);
	if (result.size() == 0) cout << -1 << endl;
	for (int i = 0; i < result.size(); i++) {
		for (int j = 0; j < result[i].size() - 1; j++) {
			cout << result[i][j] << ' ';
		}
		cout << result[i][result[i].size() - 1]<<endl;
	}
}

邻接表的写法:

cpp 复制代码
#include<bits/stdc++.h>
using namespace std;
vector<vector<int>>result;
vector<int>path;
void dfs(vector<list<int>>grid, int x, int n) {
	if (x == n) {
		result.push_back(path);
		return;
	}
	for (auto i : grid[x]) {
		path.push_back(i);
		dfs(grid, i, n);
		path.pop_back();
	}
}
int main() {
	int n, m;
	cin >> n >> m;
	vector<list<int>>grid(n + 1);
	while (m--) {
		int s, t;
		cin >> s >> t;
		grid[s].push_back(t);
	}
	path.push_back(1);
	dfs(grid, 1, n);
	if (result.size() == 0) {
		cout << -1 << endl;
	}
	for (auto path : result) {
		for (int i = 0; i < path.size() - 1; i++) {
			cout << path[i] << ' ';
		}
		cout << path[path.size() - 1] << endl;
	}
	return 0;
}
相关推荐
奋进的小暄6 分钟前
贪心算法(15)(java)用最小的箭引爆气球
算法·贪心算法
Scc_hy18 分钟前
强化学习_Paper_1988_Learning to predict by the methods of temporal differences
人工智能·深度学习·算法
巷北夜未央19 分钟前
Python每日一题(14)
开发语言·python·算法
javaisC21 分钟前
c语言数据结构--------拓扑排序和逆拓扑排序(Kahn算法和DFS算法实现)
c语言·算法·深度优先
爱爬山的老虎22 分钟前
【面试经典150题】LeetCode121·买卖股票最佳时机
数据结构·算法·leetcode·面试·职场和发展
SWHL22 分钟前
rapidocr 2.x系列正式发布
算法
雾月551 小时前
LeetCode 914 卡牌分组
java·开发语言·算法·leetcode·职场和发展
想跑步的小弱鸡1 小时前
Leetcode hot 100(day 4)
算法·leetcode·职场和发展
Fantasydg1 小时前
DAY 35 leetcode 202--哈希表.快乐数
算法·leetcode·散列表
jyyyx的算法博客1 小时前
Leetcode 2337 -- 双指针 | 脑筋急转弯
算法·leetcode