当前位置:   article > 正文

Leetcode1697-检查边长度限制的路径是否存在

Leetcode1697-检查边长度限制的路径是否存在

并查集+离线

我们把所有询问按询问的长度限制排序,边集也按边权大小升序排序。离线处理所有询问,依次从限制小的询问来处理,每回答一个询问,我们把边权小于这个限制的边都加入到图中,在这一步用并查集来维护点的连通性;把符合要求的边都加入到图中后,再在并查集中查询询问的两点是否连通即可。

  1. class Solution {
  2. public:
  3. vector<int> p=vector<int>(100010);
  4. int findd(int x){
  5. return p[x]==x?x:p[x]=findd(p[x]);
  6. }
  7. void unionn(int x,int y){
  8. x=findd(x),y=findd(y);
  9. p[x]=y;
  10. }
  11. vector<bool> distanceLimitedPathsExist(int n, vector<vector<int>>& edgeList, vector<vector<int>>& queries) {
  12. int m=queries.size();
  13. vector<bool> ans(m);
  14. iota(p.begin(),p.begin()+n,0);
  15. for(int i=0;i<m;i++) queries[i].push_back(i);
  16. sort(queries.begin(),queries.end(),[](const auto &a,const auto &b){
  17. return a[2]<b[2];
  18. });
  19. sort(edgeList.begin(),edgeList.end(),[](const auto &a,const auto &b){
  20. return a[2]<b[2];
  21. });
  22. for(int i=0,j=0;i<m;i++){
  23. while(j<edgeList.size()&&edgeList[j][2]<queries[i][2]){
  24. unionn(edgeList[j][0],edgeList[j][1]);
  25. j++;
  26. }
  27. int x=findd(queries[i][0]),y=findd(queries[i][1]);
  28. ans[queries[i][3]]=(x==y);
  29. }
  30. return ans;
  31. }
  32. };

时间复杂度:O(qlogq+mlogm+α(m)),前两个复杂度为排序的复杂度,α(m)为并查集操作的复杂度。

空间复杂度:O(n)。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/131035
推荐阅读
相关标签
  

闽ICP备14008679号