Solution: Optimize Water Distribution in a Village
Let’s solve the Optimize Water Distribution in a Village problem using the Union-Find pattern.
We'll cover the following...
Statement
There are
Build a well directly at a house: The costs for building wells are given in the wells array, where
wells[i - 1]
represents the cost to build a well at housei
(houses are numbered fromto , but the array is 0-indexed). Lay water pipes to connect two houses: Allowing one to receive water from the other. The costs for building these connections are given in the
pipes
array. Each pipe entry is written as[house1, house2, cost]
, meaning it costs to construct a pipe connectinghouse1
andhouse2
. The connection is two-way (water can flow in both directions).
In the given data, multiple pipe entries may connect the same pair of houses, but with different costs. Each entry represents an available option; you may choose the most cost-effective one.
Your task is to determine the minimum total cost to ensure every house gets access to water, either by building a well directly at it or connecting it via pipes to another house with access to water.
Constraints:
wells.length
...