-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1326-MinimumNumberOfTapsToOpenToWaterAGarden.go
More file actions
77 lines (67 loc) · 2.92 KB
/
1326-MinimumNumberOfTapsToOpenToWaterAGarden.go
File metadata and controls
77 lines (67 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package main
// 1326. Minimum Number of Taps to Open to Water a Garden
// There is a one-dimensional garden on the x-axis.
// The garden starts at the point 0 and ends at the point n. (i.e., the length of the garden is n).
// There are n + 1 taps located at points [0, 1, ..., n] in the garden.
// Given an integer n and an integer array ranges of length n + 1 where ranges[i] (0-indexed)
// means the i-th tap can water the area [i - ranges[i], i + ranges[i]] if it was open.
// Return the minimum number of taps that should be open to water the whole garden,
// If the garden cannot be watered return -1.
// Example 1:
// <img src="https://assets.leetcode.com/uploads/2020/01/16/1685_example_1.png" />
// Input: n = 5, ranges = [3,4,1,1,0,0]
// Output: 1
// Explanation: The tap at point 0 can cover the interval [-3,3]
// The tap at point 1 can cover the interval [-3,5]
// The tap at point 2 can cover the interval [1,3]
// The tap at point 3 can cover the interval [2,4]
// The tap at point 4 can cover the interval [4,4]
// The tap at point 5 can cover the interval [5,5]
// Opening Only the second tap will water the whole garden [0,5]
// Example 2:
// Input: n = 3, ranges = [0,0,0,0]
// Output: -1
// Explanation: Even if you activate all the four taps you cannot water the whole garden.
// Constraints:
// 1 <= n <= 10^4
// ranges.length == n + 1
// 0 <= ranges[i] <= 100
import "fmt"
func minTaps(n int, ranges []int) int {
maxReach := make([]int, n + 1)
min := func (x, y int) int { if x < y { return x; }; return y; }
max := func (x, y int) int { if x > y { return x; }; return y; }
for i := 0; i <= n; i++ {
left, right := max(0, i - ranges[i]), min(n, i + ranges[i])
maxReach[left] = max(maxReach[left], right)
}
jumps, currentEnd, farthestEnd := 0, 0, 0
for i := 0; i <= n; i++ {
if i > farthestEnd { return -1 } // 花园始终存在无法灌溉到的地方
if i > currentEnd {
jumps++
currentEnd = farthestEnd
}
farthestEnd = max(farthestEnd, maxReach[i])
}
return jumps
}
func main() {
// Example 1:
// <img src="https://assets.leetcode.com/uploads/2020/01/16/1685_example_1.png" />
// Input: n = 5, ranges = [3,4,1,1,0,0]
// Output: 1
// Explanation: The tap at point 0 can cover the interval [-3,3]
// The tap at point 1 can cover the interval [-3,5]
// The tap at point 2 can cover the interval [1,3]
// The tap at point 3 can cover the interval [2,4]
// The tap at point 4 can cover the interval [4,4]
// The tap at point 5 can cover the interval [5,5]
// Opening Only the second tap will water the whole garden [0,5]
fmt.Println(minTaps(5, []int{3,4,1,1,0,0})) // 1
// Example 2:
// Input: n = 3, ranges = [0,0,0,0]
// Output: -1
// Explanation: Even if you activate all the four taps you cannot water the whole garden.
fmt.Println(minTaps(3, []int{0,0,0,0})) // -1
}