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 :

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.

Approach:

C++

#include <bits/stdc++.h>
using namespace std;

int minDeletionSize(vector<string&strs)
{
    int m = strs.size();
    int n = strs[0].size();

    int res = 0;
    vector<boolflag(nfalse);
    for (int j = 0j < n; ++j)
    {
        if (flag[j])
        {
            continue;
        }
        int temp = res;
        for (int i = 1i < m; ++i)
        {
            int k = j;
            while (k < n && (strs[i - 1][k] == strs[i][k] ||
                             flag[k]))
            {
                ++k;
            }

            if (k < n && strs[i - 1][k] > strs[i][k])
            {
                flag[k] = true;
                ++res;
                j = -1;
                break;
            }
        }

        if (temp == res)
        {
            return res;
        }
    }

    return res;
}

int main()
{
    vector<stringstrs = {"ca""bb""ac"};

    cout << minDeletionSize(strs);

    return 0;
}


No comments:

Post a Comment