[LeetCode] Delete Columns to Make Sorted III

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.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class Solution {
public:
int minDeletionSize(vector<string>& A) {
int n = A.size(), m = A[0].length(), res = m, i;
if(m == 1) return 0;
vector<int> dp(m, 1);
for(int j = 0; j < m; j++) {
for(int k = 0; k < j; k++) {
for(i = 0; i < n; i++) {
if(A[i][k] > A[i][j]) break;
}
if(i == n) dp[j] = max(dp[j], dp[k] + 1);
res = min(res, m - dp[j]);
}
}

return res;
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2022/05/31/PS/LeetCode/delete-columns-to-make-sorted-iii/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.