HanchengZhao / algorithm-notes

0 stars 0 forks source link

471. Encode String with Shortest Length #6

Open GorillaSX opened 7 years ago

GorillaSX commented 7 years ago

Given a non-empty string, encode the string such that its encoded length is the shortest.

The encoding rule is: k[encoded_string], where the encoded_string inside the square brackets is being repeated exactly k times.

Note: k will be a positive integer and encoded string will not be empty or have extra space. You may assume that the input string contains only lowercase English letters. The string's length is at most 160. If an encoding process does not make the string shorter, then do not encode it. If there are several solutions, return any of them is fine. Example 1:

Input: "aaa" Output: "aaa" Explanation: There is no way to encode it such that it is shorter than the input string, so we do not encode it. Example 2:

Input: "aaaaa" Output: "5[a]" Explanation: "5[a]" is shorter than "aaaaa" by 1 character. Example 3:

Input: "aaaaaaaaaa" Output: "10[a]" Explanation: "a9[a]" or "9[a]a" are also valid solutions, both of them have the same length = 5, which is the same as "10[a]". Example 4:

Input: "aabcaabcd" Output: "2[aabc]d" Explanation: "aabc" occurs twice, so one answer can be "2[aabc]d". Example 5:

Input: "abbbabbbcabbbabbbc" Output: "2[2[abbb]c]" Explanation: "abbbabbbc" occurs twice, but "abbbabbbc" can also be encoded to "2[abbb]c", so one answer can be "2[2[abbb]c]".

YeWang0 commented 7 years ago

Any solution for this question?

GorillaSX commented 7 years ago

There is a solution in dp.

class Solution {
public:
    string encode(string s) {
        int len = s.size();
        vector<vector<string>> dp(len,vector<string>(len+1,s));
        for(int i = 1;i < len + 1;i++)
        {
            for(int start = 0;start <= len - i;start++)
            {
                dp[start][i] = s.substr(start,i);
            }
        }
        for(int i = 1;i < len + 1;i++)
        {
            for(int start = 0;start <= len - i;start++ )   
            {
                for(int length = 1;length <= i;length++)
                {
                    string tmp = dp[start][length] + (start+length < len ? dp[start + length][i - length] : "");
                    dp[start][i] = dp[start][i].size() >= tmp.size() ? tmp : dp[start][i]; 
                }
                int count = 1;
                string target = s.substr(start, i);
                int begin = start + i;
                while(begin + i <= len && s.substr(begin, i) == target)
                {
                    count++;
                    begin = begin + i;
                    string newstring = to_string(count) + '[' + dp[start][i] + ']'; 
                    dp[start][begin-start] = newstring.size() < dp[start][begin-start].size() ? newstring : dp[start][begin-start];
                }
            }
        }
        return dp[0][len];
    }
};