赞
踩
欢迎关注更多精彩
关注我,学习常用算法与数据结构,一题多解,降维打击。
[1697] 检查边长度限制的路径是否存在
给你一个 n 个点组成的无向图边集 edgeList ,其中 edgeList[i] = [ui, vi, disi] 表示点 ui 和点 vi 之间有一条长度为 disi 的边。请注意,两个点之间可能有 超过一条边 。
给你一个查询数组queries ,其中 queries[j] = [pj, qj, limitj] ,你的任务是对于每个查询 queries[j] ,判断是否存在从 pj 到 qj 的路径,且这条路径上的每一条边都 严格小于 limitj 。
请你返回一个 布尔数组 answer ,其中 answer.length == queries.length ,当 queries[j] 的查询结果为 true 时, answer 第 j 个值为 true ,否则为 false 。
示例 1:
输入:n = 3, edgeList = [[0,1,2],[1,2,4],[2,0,8],[1,0,16]], queries = [[0,1,2],[0,2,5]]
输出:[false,true]
解释:上图为给定的输入数据。注意到 0 和 1 之间有两条重边,分别为 2 和 16 。
对于第一个查询,0 和 1 之间没有小于 2 的边,所以我们返回 false 。
对于第二个查询,有一条路径(0 -> 1 -> 2)两条边都小于 5 ,所以这个查询我们返回 true 。
示例 2:
输入:n = 5, edgeList = [[0,1,10],[1,2,5],[2,3,9],[3,4,13]], queries = [[0,4,14],[1,4,13]]
输出:[true,false]
解释:上图为给定数据。
提示:
2 <= n <= 10^5
1 <= edgeList.length, queries.length <= 10^5
edgeList[i].length == 3
queries[j].length == 3
0 <= ui, vi, pj, qj <= n - 1
ui != vi
pj != qj
1 <= disi, limitj <= 10^9
两个点之间可能有 多条 边。
此题为图论题,需要用到最小生成树,离线算法技巧。
const int N = 1e6 + 10; /* 并查集,判连通用 */ class UnionSet{ private: int father[N]; int num; public: // 初始化 UnionSet(int n) { } // 查询父结点 int Find(int x){ } //合并结点 bool Join(int x, int y) { } //判断结点是否连通 bool IsLink(int x, int y) { } }; bool LessVector(vector<vector<int>>& q1, vector<vector<int>>& q2) { return q1[2]<q2[2]; } class Solution { public: vector<bool> distanceLimitedPathsExist(int n, vector<vector<int>>& edgeList, vector<vector<int>>& queries) { // 为querys 加上编号 for (int i = 0; i < queries.size(); ++i) { queries[i].push_back(i); } sort(edgeList.begin(), edgeList.end(), LessVector); sort(queries.begin(), queries.end(), LessVector); vector<bool> ans = vector<bool>(queries.size(), false); UnionSet us(n+10); int curq = 0; for (int i = 0; i < edgeList.size(); ++i) { us.Join(edgeList[i][0], edgeList[i][1]); // 相同的边添加完以后,进行一轮查询,找出limit > 当前边长,且小于等下一轮添加边长的查询。 if (i==edgeList.size()-1 || edgeList[i+1][2]!=edgeList[i][2]) { int nextWeight = INT32_MAX; if(i==edgeList.size()-1) nextWeight = edgeList[i+1][2]; for (; curq < queries.size() && queries[curq][2]<=nextWeight; ++curq) { if (queries[curq][2]<=edgeList[i][2])continue; // 只查询limit>edgeList[i][2], <=edgeList[i][2] 的在之前已查询过了,或者根本不;连通 if(us.IsLink(queries[curq][0], queries[curq][1])) ans[queries[curq][3]] = true; } } } return ans; } };
const int N = 1e6 + 10; /* 并查集,判连通用 */ class UnionSet{ private: int father[N]; int num; public: // 初始化 UnionSet(int n) { num = n; for (int i = 0; i < n; ++i) { father[i]=i; } } // 查询父结点 int Find(int x){ int s = x; while(father[x]!=x)x=father[x]; /* * 缩短路径优化 */ while(s!=father[s]) { int temp = father[s]; father[s]=x; s = temp; } return x; } //合并结点 bool Join(int x, int y) { x = Find(x); y = Find(y); if (x==y)return false; father[x]=y; return true; } //判断结点是否连通 bool IsLink(int x, int y) { x = Find(x); y = Find(y); return x==y; } }; bool LessVector(vector<vector<int>>& q1, vector<vector<int>>& q2) { return q1[2]<q2[2]; } class Solution { public: vector<bool> distanceLimitedPathsExist(int n, vector<vector<int>>& edgeList, vector<vector<int>>& queries) { // 为querys 加上编号 for (int i = 0; i < queries.size(); ++i) { queries[i].push_back(i); } sort(edgeList.begin(), edgeList.end(), LessVector); sort(queries.begin(), queries.end(), LessVector); vector<bool> ans = vector<bool>(queries.size(), false); UnionSet us(n+10); int curq = 0; for (int i = 0; i < edgeList.size(); ++i) { us.Join(edgeList[i][0], edgeList[i][1]); // 相同的边添加完以后,进行一轮查询,找出limit > 当前边长,且小于等下一轮添加边长的查询。 if (i==edgeList.size()-1 || edgeList[i+1][2]!=edgeList[i][2]) { int nextWeight = INT32_MAX; if(i==edgeList.size()-1) nextWeight = edgeList[i+1][2]; for (; curq < queries.size() && queries[curq][2]<=nextWeight; ++curq) { if (queries[curq][2]<=edgeList[i][2])continue; // 只查询limit>edgeList[i][2], <=edgeList[i][2] 的在之前已查询过了,或者根本不;连通 if(us.IsLink(queries[curq][0], queries[curq][1])) ans[queries[curq][3]] = true; } } } return ans; } }; /* 5 [[0,1,10],[1,2,5],[2,3,9],[3,4,13]] [[0,4,14],[1,4,13]] 5 [[0,1,10],[1,2,10],[2,3,10],[3,4,10]] [[0,4,11],[1,4,11],[0,4,10],[1,4,10]] 5 [[0,1,10],[1,2,10],[2,3,9],[3,4,9]] [[0,4,11],[1,4,11],[0,4,10],[1,4,10]] */
https://ac.nowcoder.com/acm/contest/9700/D 可以利用最小生成树思想
本人码农,希望通过自己的分享,让大家更容易学懂计算机知识。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。