-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmax-increase-to-keep-city-skyline.go
74 lines (65 loc) · 1.31 KB
/
max-increase-to-keep-city-skyline.go
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
package main
import (
"fmt"
)
// source: https://leetcode.com/problems/max-increase-to-keep-city-skyline/
func min(x ...int) int {
mi := 0
for i := 1; i < len(x); i++ {
if x[i] < x[mi] {
mi = i
}
}
return x[mi]
}
func maxIncreaseKeepingSkyline(grid [][]int) int {
n := len(grid)
mh, mv := make([]int, n), make([]int, n)
for i := range grid {
for j := range grid {
if grid[i][j] > mh[i] {
mh[i] = grid[i][j]
}
if grid[i][j] > mv[j] {
mv[j] = grid[i][j]
}
}
}
res := 0
for i := range grid {
for j := range grid {
res += min(mh[i]-grid[i][j], mv[j]-grid[i][j])
}
}
return res
}
func main() {
testCases := []struct {
grid [][]int
want int
}{
{
grid: [][]int{{3, 0, 8, 4}, {2, 4, 5, 7}, {9, 2, 6, 3}, {0, 3, 1, 0}},
want: 35,
},
{
grid: [][]int{{0, 0, 0}, {0, 0, 0}, {0, 0, 0}},
want: 0,
},
}
successes := 0
for _, tc := range testCases {
x := maxIncreaseKeepingSkyline(tc.grid)
status := "ERROR"
if fmt.Sprint(x) == fmt.Sprint(tc.want) {
status = "OK"
successes++
}
fmt.Println(status, " Expected: ", tc.want, " Actual: ", x)
}
if l := len(testCases); successes == len(testCases) {
fmt.Printf("===\nSUCCESS: %d of %d tests ended successfully\n", successes, l)
} else {
fmt.Printf("===\nFAIL: %d tests failed\n", l-successes)
}
}