洛谷 P2296 寻找道路 dijkstra 反向建图 存图的vector e[]数组作为函数参数传入

该博客详细介绍了洛谷P2296问题的解决方案,主要使用了Dijkstra算法的变形。首先通过反向建图找到不可达的起点,然后利用vis数组在正向图搜索中排除这些点,确保最短路径的正确性。博主还提到了如何将vector<pair<int, int>> e[]作为函数参数传递,以及vis数组在解决问题中的关键作用。博客内容包含两次Dijkstra算法的实现,一次是未将边数组作为参数,另一次是优化后的版本。" 112669965,10537082,Big-Little Net:多尺度特征表示在视觉与语音识别中的应用,"['深度学习', '计算机视觉', '语音识别', '神经网络', '模型结构']
摘要由CSDN通过智能技术生成

题目链接:

https://www.luogu.com.cn/problem/P2296

算法:

dijkstra变形

思路:

1:存图时,也反向存一份,因为题目要求所求最短路径上的点的连接点也必须可以到达终点t,因此先从终点t跑反向图,找到此时的d[i]为1e9,即不可达,那么在反向图中,这些点所指向的点就是正向图中,不可以走的点,将这些点用vis[]数组标记,然后跑正向图的时候就利用vis数组的值把不能出现在所求的最短路径上的点排除在外

2:第一次ac时,因为不知道如何把vector<pair<int,int> >e[maxn]作为函数的参数传入,所以dijkstra函数写了两个版本,写了两遍,查百度之后发现,其可以作为函数参数传入,改进了代码

3:也要特别注意vis[]数组在巧妙解决第二遍dijkstra排除不能出现在最短路径上的点的时候的关键作用

一:两个dijkstra函数

#include <bits/stdc++.h>

using namespace std;
const int maxn=1e4+1;
vector<pair<int,int> >e[maxn];
vector<pair<int,int> >mapp[maxn];
int n,m,s,t,a,b,d[maxn],vis[maxn];

void init()
{
    for(int i&#
请给一下代码加注释,越详细越好。AStar.h:#ifndef ASTAR_H #define ASTAR_H #include <vector> using namespace std; class AStar { public: AStar(int n); void add_edge(int u, int v, int w); void set_heuristic(vector<int>& h); void shortest_path(int s, int t); vector<int> get_dist(); vector<int> get_prev(); private: struct edge { int to, weight; edge(int t, int w) : to(t), weight(w) {} }; int n; vector<vector<edge>> graph; vector<vector<edge>> rev_graph; vector<int> dist; vector<int> prev; vector<int> heuristic; }; class Astar { }; #endif;AStar.cpp:#include "AStar.h" #include <vector> #include <queue> #include <limits> using namespace std; AStar::AStar(int n) : n(n), graph(n), rev_graph(n), dist(n, numeric_limits<int>::max()), prev(n, -1), heuristic(n, 0) {} void AStar::add_edge(int u, int v, int w) { graph[u].push_back(edge(v, w)); rev_graph[v].push_back(edge(u, w)); } void AStar::set_heuristic(vector<int>& h) { heuristic = h; } void AStar::shortest_path(int s, int t) { priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> pq; dist[s] = 0; pq.push(make_pair(heuristic[s], s)); while (!pq.empty()) { int u = pq.top().second; pq.pop(); if (u == t) return; for (auto& e : graph[u]) { int v = e.to; int w = e.weight; if (dist[v] > dist[u] + w) { dist[v] = dist[u] + w; prev[v] = u; pq.push(make_pair(dist[v] + heuristic[v], v)); } } for (auto& e : rev_graph[u]) { int v = e.to; int w = e.weight; if (dist[v] > dist[u] + w) { dist[v] = dist[u] + w; prev[v] = u; pq.push(make_pair(dist[v] + heuristic[v], v)); } } } } vector<int> AStar::get_dist() { return dist; } vector<int> AStar::get_prev() { return prev; }
05-30
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值