-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path955-DeleteColumnsToMakeSortedII.go
More file actions
91 lines (80 loc) · 3.55 KB
/
955-DeleteColumnsToMakeSortedII.go
File metadata and controls
91 lines (80 loc) · 3.55 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
90
91
package main
// 955. Delete Columns to Make Sorted II
// 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 its elements in lexicographic order (i.e., strs[0] <= strs[1] <= strs[2] <= ... <= strs[n - 1]).
// Return the minimum possible value of answer.length.
// Example 1:
// Input: strs = ["ca","bb","ac"]
// Output: 1
// Explanation:
// After deleting the first column, strs = ["a", "b", "c"].
// Now strs is in lexicographic order (ie. strs[0] <= strs[1] <= strs[2]).
// We require at least 1 deletion since initially strs was not in lexicographic order, so the answer is 1.
// Example 2:
// Input: strs = ["xc","yb","za"]
// Output: 0
// Explanation:
// strs is already in lexicographic order, so we do not need to delete anything.
// Note that the rows of strs are not necessarily in lexicographic order:
// i.e., it is NOT necessarily true that (strs[0][0] <= strs[0][1] <= ...)
// Example 3:
// Input: strs = ["zyx","wvu","tsr"]
// Output: 3
// Explanation: We have to delete every column.
// 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 {
res, i, j, n, m := 0, 0, 0, len(strs), len(strs[0])
// for every col, need to check whether it will increase the deletion.
// need to go through very column, as it's possible that prior has == thus still need compare.
sorted := make([]bool, n)
for j = 0; j < m; j++ {
for i = 0; i < n - 1; i++ {
if !sorted[i] && (strs[i][j] > strs[i + 1][j]) {
res++
break // find one inordered, then need delete the whole col.
}
}
// the whole colum is sorted, need keep so later cols can refer i.e., x=x<y.
if i == n - 1 {
for k := 0; k < n - 1; k++ {
// it's important to combine previous col's result, as FFT | FTF = FTT. F means == here.
sorted[k] = sorted[k] || (strs[k][j] < strs[k + 1][j])
}
}
}
return res
}
func main() {
// Example 1:
// Input: strs = ["ca","bb","ac"]
// Output: 1
// Explanation:
// After deleting the first column, strs = ["a", "b", "c"].
// Now strs is in lexicographic order (ie. strs[0] <= strs[1] <= strs[2]).
// We require at least 1 deletion since initially strs was not in lexicographic order, so the answer is 1.
fmt.Println(minDeletionSize([]string{"ca","bb","ac"})) // 1
// Example 2:
// Input: strs = ["xc","yb","za"]
// Output: 0
// Explanation:
// strs is already in lexicographic order, so we do not need to delete anything.
// Note that the rows of strs are not necessarily in lexicographic order:
// i.e., it is NOT necessarily true that (strs[0][0] <= strs[0][1] <= ...)
fmt.Println(minDeletionSize([]string{"xc","yb","za"})) // 0
// Example 3:
// Input: strs = ["zyx","wvu","tsr"]
// Output: 3
// Explanation: We have to delete every column.
fmt.Println(minDeletionSize([]string{"zyx","wvu","tsr"})) // 3
fmt.Println(minDeletionSize([]string{"bluefrog","leetcode"})) // 0
fmt.Println(minDeletionSize([]string{"leetcode","bluefrog"})) // 1
}