返回介绍

solution / 0900-0999 / 0960.Delete Columns to Make Sorted III / README_EN

发布于 2024-06-17 01:03:32 字数 4737 浏览 0 评论 0 收藏 0

960. Delete Columns to Make Sorted III

中文文档

Description

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.
  •  

Solutions

Solution 1

class Solution:
  def minDeletionSize(self, strs: List[str]) -> int:
    n = len(strs[0])
    dp = [1] * n
    for i in range(1, n):
      for j in range(i):
        if all(s[j] <= s[i] for s in strs):
          dp[i] = max(dp[i], dp[j] + 1)
    return n - max(dp)
class Solution {
  public int minDeletionSize(String[] strs) {
    int n = strs[0].length();
    int[] dp = new int[n];
    Arrays.fill(dp, 1);
    int mx = 1;
    for (int i = 1; i < n; ++i) {
      for (int j = 0; j < i; ++j) {
        if (check(i, j, strs)) {
          dp[i] = Math.max(dp[i], dp[j] + 1);
        }
      }
      mx = Math.max(mx, dp[i]);
    }
    return n - mx;
  }

  private boolean check(int i, int j, String[] strs) {
    for (String s : strs) {
      if (s.charAt(i) < s.charAt(j)) {
        return false;
      }
    }
    return true;
  }
}
class Solution {
public:
  int minDeletionSize(vector<string>& strs) {
    int n = strs[0].size();
    vector<int> dp(n, 1);
    int mx = 1;
    for (int i = 1; i < n; ++i) {
      for (int j = 0; j < i; ++j) {
        if (check(i, j, strs)) {
          dp[i] = max(dp[i], dp[j] + 1);
        }
      }
      mx = max(mx, dp[i]);
    }
    return n - mx;
  }

  bool check(int i, int j, vector<string>& strs) {
    for (string& s : strs)
      if (s[i] < s[j])
        return false;
    return true;
  }
};
func minDeletionSize(strs []string) int {
  n := len(strs[0])
  dp := make([]int, n)
  mx := 1
  dp[0] = 1
  check := func(i, j int) bool {
    for _, s := range strs {
      if s[i] < s[j] {
        return false
      }
    }
    return true
  }
  for i := 1; i < n; i++ {
    dp[i] = 1
    for j := 0; j < i; j++ {
      if check(i, j) {
        dp[i] = max(dp[i], dp[j]+1)
      }
    }
    mx = max(mx, dp[i])
  }
  return n - mx
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文