-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path960-DeleteColumnsToMakeSortedIII.go
More file actions
89 lines (77 loc) · 3.16 KB
/
960-DeleteColumnsToMakeSortedIII.go
File metadata and controls
89 lines (77 loc) · 3.16 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
78
79
80
81
82
83
84
85
86
87
88
89
package main
// 960. Delete Columns to Make Sorted III
// You are given an array of n strings strs, all of the same length.
// We may choose any deletion indices, and we delete all the characters in those indices for each string.
// For example, if we have strs = ["abcdef","uvwxyz"] and deletion indices {0, 2, 3}, then the final array after deletions is ["bef", "vyz"].
// Suppose we chose a set of deletion indices answer such that after deletions, the final array has every string (row) in lexicographic order.
// (i.e., (strs[0][0] <= strs[0][1] <= ... <= strs[0][strs[0].length - 1]), and (strs[1][0] <= strs[1][1] <= ... <= strs[1][strs[1].length - 1]), and so on).
// Return the minimum possible value of answer.length.
// Example 1:
// Input: strs = ["babca","bbazb"]
// Output: 3
// Explanation: After deleting columns 0, 1, and 4, the final array is strs = ["bc", "az"].
// Both these rows are individually in lexicographic order (ie. strs[0][0] <= strs[0][1] and strs[1][0] <= strs[1][1]).
// Note that strs[0] > strs[1] - the array strs is not necessarily in lexicographic order.
// Example 2:
// Input: strs = ["edcba"]
// Output: 4
// Explanation: If we delete less than 4 columns, the only row will not be lexicographically sorted.
// Example 3:
// Input: strs = ["ghi","def","abc"]
// Output: 0
// Explanation: All rows are already lexicographically sorted.
// Constraints:
// n == strs.length
// 1 <= n <= 100
// 1 <= strs[i].length <= 100
// strs[i] consists of lowercase English letters.
import "fmt"
func minDeletionSize(strs []string) int {
n := len(strs[0])
dp := make([]int, n)
for i := range dp {
dp[i] = 1
}
for i := n - 2; i >= 0; i-- {
for j := i + 1; j < n; j++ {
valid := true
for _, row := range strs {
if row[i] > row[j] {
valid = false
break
}
}
if valid {
if dp[i] < 1 + dp[j] {
dp[i] = 1 + dp[j]
}
}
}
}
mx := 0
for _, v := range dp {
mx = max(mx, v)
}
return n - mx
}
func main() {
// Example 1:
// Input: strs = ["babca","bbazb"]
// Output: 3
// Explanation: After deleting columns 0, 1, and 4, the final array is strs = ["bc", "az"].
// Both these rows are individually in lexicographic order (ie. strs[0][0] <= strs[0][1] and strs[1][0] <= strs[1][1]).
// Note that strs[0] > strs[1] - the array strs is not necessarily in lexicographic order.
fmt.Println(minDeletionSize([]string{"babca","bbazb"})) // 3
// Example 2:
// Input: strs = ["edcba"]
// Output: 4
// Explanation: If we delete less than 4 columns, the only row will not be lexicographically sorted.
fmt.Println(minDeletionSize([]string{"edcba"})) // 4
// Example 3:
// Input: strs = ["ghi","def","abc"]
// Output: 0
// Explanation: All rows are already lexicographically sorted.
fmt.Println(minDeletionSize([]string{"ghi","def","abc"})) // 0
fmt.Println(minDeletionSize([]string{"bluefrog","leetcode"})) // 6
fmt.Println(minDeletionSize([]string{"leetcode","bluefrog"})) // 6
}