leetcode 1168. Optimize Water Distribution in a Village

3 篇文章 0 订阅

There are n houses in a village. We want to supply water for all the houses by building wells and laying pipes.

For each house i, we can either build a well inside it directly with cost wells[i], or pipe in water from another well to it. The costs to lay pipes between houses are given by the array pipes, where each pipes[i] = [house1, house2, cost] represents the cost to connect house1 and house2 together using a pipe. Connections are bidirectional.

Find the minimum total cost to supply water to all houses.

 

Example 1:

Input: n = 3, wells = [1,2,2], pipes = [[1,2,1],[2,3,1]]
Output: 3
Explanation: 
The image shows the costs of connecting houses using pipes.
The best strategy is to build a well in the first house with cost 1 and connect the other houses to it with cost 2 so the total cost is 3.

 

Constraints:

  • 1 <= n <= 10000
  • wells.length == n
  • 0 <= wells[i] <= 10^5
  • 1 <= pipes.length <= 10000
  • 1 <= pipes[i][0], pipes[i][1] <= n
  • 0 <= pipes[i][2] <= 10^5
  • pipes[i][0] != pipes[i][1]
class Solution {
public:
    int minCostToSupplyWater(int n, vector<int>& wells, vector<vector<int>>& pipes) 
    {
        root.resize(n + 1 , 0) ;
        int res = 0 ;
        
        for(int i = 1 ; i <= n ; i++)
        {
            root[i] = i ;
            pipes.push_back({0 , i , wells[i - 1]}) ;
        }
        
        sort(pipes.begin() , pipes.end() , [](vector<int>& a , vector<int>& b){return a[2] < b[2] ;}) ;
        
        for(auto pipe : pipes)
        {
            if(n <= 0) break ;
            int x = find(pipe[0]) , y = find(pipe[1]) ;
            if(x != y) 
            {
                res += pipe[2] ;
                root[x] = y ;
                n-- ;
            }
        }
        
        return res ;
    }
    
    
    int find(int x)
    {
        if(x != root[x]) return find(root[x]) ;
        else return x ;
    }
    
private :
    vector<int> root ;
};

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值