代码拉取完成,页面将自动刷新
//
// Created by 高森森 on 2022/2/11.
//
#ifndef LEETCODE_SOLUTION34_H
#define LEETCODE_SOLUTION34_H
#include<iostream>
#include<vector>
#include<queue>
using namespace std;
class Solution34 {
public:
typedef pair<int, int> PII;
// 单源最短路径,先求出点0到所有大点的最短路径dist。
// 然后遍历每条边,从每条边的两端大点出发,求出剩余maxMoves-dist[i]步时,能走多少个小点
int reachableNodes(vector<vector<int>>& edges, int maxMoves, int n) {
const int INF=INT_MAX/2;
vector<vector<PII>>graph(n);
for(auto e:edges){
graph[e[0]].push_back(make_pair(e[1],e[2]));
graph[e[1]].push_back(make_pair(e[0],e[2]));
}
vector<int>dist(n,INF);
dist[0]=0;
priority_queue<PII,vector<PII>,greater<PII>>pq;
pq.emplace(0,0);
while(!pq.empty()){
auto [d,u]=pq.top();
pq.pop();
if(d>dist[u])
continue;
for(auto &[v,w]:graph[u]){
if(dist[u]+w+1<dist[v]){
dist[v]=dist[u]+w+1;
pq.emplace(dist[v],v);
}
}
}
int res=0;
for(int i=0;i<n;i++)
if(dist[i]<=maxMoves){
res++;
}
for(auto &edge:edges){
int start=edge[0];
int end=edge[1];
int cnt=edge[2];
int sum=0;
sum+=dist[start]<=maxMoves?maxMoves-dist[start]:0;
sum+=dist[end]<=maxMoves?maxMoves-dist[end]:0;
res+=min(sum,cnt);
}
return res;
}
};
#endif //LEETCODE_SOLUTION34_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。