-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3DSurfaceAreas.go
134 lines (110 loc) · 3.42 KB
/
3DSurfaceAreas.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
On a N * N grid, we place some 1 * 1 * 1 cubes.
Each value v = grid[i][j] represents a tower of v cubes placed on top of grid cell (i, j).
Return the total surface area of the resulting shapes.
Example 1:
Input: [[2]]
Output: 10
Example 2:
Input: [[1,2],[3,4]]
Output: 34
Example 3:
Input: [[1,0],[0,2]]
Output: 16
Example 4:
Input: [[1,1,1],[1,0,1],[1,1,1]]
Output: 32
Example 5:
Input: [[2,2,2],[2,1,2],[2,2,2]]
Output: 46
Note:
1 <= N <= 50
0 <= grid[i][j] <= 50
*/
package main
import (
"fmt"
)
func main() {
testCases := [][][]int{[][]int{[]int{2}}, [][]int{[]int{1, 2}, []int{3, 4}}, [][]int{[]int{1, 0}, []int{0, 2}}, [][]int{[]int{1, 1, 1}, []int{1, 0, 1}, []int{1, 1, 1}}, [][]int{[]int{2, 2, 2}, []int{2, 1, 2}, []int{2, 2, 2}}}
for _, test := range testCases {
fmt.Println(surfaceArea(test))
}
}
func surfaceArea(grid [][]int) int {
// algorithm: for each grid position, check the positions around it (north, east, south, and west).
// if there's nothing on a side or it's a grid edge, add the height of the current position to total (area of that
// side). If there's something on a side position and it's taller than current, no area is added to total.
// If an adjacent position has a height smaller than the current position,
// add the difference of heights for that side to the current total. This should be done for each of the four
// sides. Also, for each nonzero grid point, add two area units to the total, representing the top and botton areas.
totalArea := 0
for i := 0; i < len(grid); i++ {
for j := 0; j < len(grid[i]); j++ {
if grid[i][j] > 0 {
totalArea += 2 // mandatory top/bottom
// check north face
if i == 0 {
// on the northern edge
totalArea += grid[i][j]
} else if grid[i-1][j] == 0 {
// nothing on the north
totalArea += grid[i][j]
} else if grid[i-1][j] > 0 {
// there's something on the north..
if grid[i-1][j] < grid[i][j] {
// ..and it's shorter
totalArea += (grid[i][j] - grid[i-1][j])
} // else if grid[i-1][j] > grid[i][j] {
// totalArea += grid[i-1][j] - grid[i][j]
// }
}
// check southern face
if i == len(grid)-1 {
// on the southern edge
totalArea += grid[i][j]
} else if grid[i+1][j] == 0 {
// nothing on south side
totalArea += grid[i][j]
} else if grid[i+1][j] > 0 {
// there's something on the south side..
if grid[i+1][j] < grid[i][j] {
// .. and it's shorter
totalArea += (grid[i][j] - grid[i+1][j])
} // else if grid[i+1][j] > grid[i][j] {
// totalArea += grid[i+1][j] - grid[i][j]
// }
}
// check eastern face
if j == 0 {
// on the eastern edge
totalArea += grid[i][j]
} else if grid[i][j-1] == 0 {
// nothing on the eastern edge
totalArea += grid[i][j]
} else if grid[i][j-1] > 0 {
// there's something on the eastern side..
if grid[i][j-1] < grid[i][j] {
// .. and it's shorter
totalArea += (grid[i][j] - grid[i][j-1])
}
}
// check western face
if j == len(grid[i])-1 {
// on the western edge
totalArea += grid[i][j]
} else if grid[i][j+1] == 0 {
// nothing on the western side
totalArea += grid[i][j]
} else if grid[i][j+1] > 0 {
// there's something on the western side..
if grid[i][j+1] < grid[i][j] {
// .. and it's shorter
totalArea += grid[i][j] - grid[i][j+1]
}
}
}
}
}
return totalArea
}