-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution2.go
53 lines (53 loc) · 1.19 KB
/
Solution2.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
func getMaxGridHappiness(m int, n int, introvertsCount int, extrovertsCount int) int {
p := int(math.Pow(3, float64(n-1)))
h := [3][3]int{{0, 0, 0}, {0, -60, -10}, {0, -10, 40}}
memo := make([][][][]int, m*n)
for i := range memo {
memo[i] = make([][][]int, p*3)
for j := range memo[i] {
memo[i][j] = make([][]int, introvertsCount+1)
for k := range memo[i][j] {
memo[i][j][k] = make([]int, extrovertsCount+1)
for l := range memo[i][j][k] {
memo[i][j][k][l] = -1
}
}
}
}
var dfs func(int, int, int, int) int
dfs = func(pos, pre, ic, ec int) int {
if pos == m*n || (ic == 0 && ec == 0) {
return 0
}
if memo[pos][pre][ic][ec] != -1 {
return memo[pos][pre][ic][ec]
}
ans := 0
up := pre / p
left := pre % 3
if pos%n == 0 {
left = 0
}
for i := 0; i < 3; i++ {
if (i == 1 && ic == 0) || (i == 2 && ec == 0) {
continue
}
cur := pre%p*3 + i
nic, nec := ic, ec
c := 0
if i == 1 {
nic--
c = 120
} else if i == 2 {
nec--
c = 40
}
a := h[up][i] + h[left][i]
b := dfs(pos+1, cur, nic, nec)
ans = max(ans, a+b+c)
}
memo[pos][pre][ic][ec] = ans
return ans
}
return dfs(0, 0, introvertsCount, extrovertsCount)
}