Minimum Deletion Cost to Avoid Repeating Letters

Given a string s and an array of integers cost where cost[i] is the cost of deleting the ith character in s.

Return the minimum cost of deletions such that there are no two identical letters next to each other.

Notice that you will delete the chosen characters at the same time, in other words, after deleting a character, the costs of deleting other characters will not change.

 

Example 1:

Input: s = "abaac", cost = [1,2,3,4,5]
Output: 3
Explanation: Delete the letter "a" with cost 3 to get "abac" (String without two identical letters next to each other).

Example 2:

Input: s = "abc", cost = [1,2,3]
Output: 0
Explanation: You don't need to delete any character because there are no identical letters next to each other.

Example 3:

Input: s = "aabaa", cost = [1,2,3,4,1]
Output: 2
Explanation: Delete the first and the last character, getting the string ("aba").

 

Constraints:


Solution:

class Solution {
    public int minCost(String s, int[] cost) {
        int min = 0, prev = 0;
        for (int i = 1; i < s.length(); i ++) {
            char prevChar = s.charAt(prev);
            char curr = s.charAt(i);
            if (prevChar == curr) {
                if (cost[prev] < cost[i]) {
                    min += cost[prev];
                    prev = i;
                } else {
                    min += cost[i];
                }
            } else {
                prev = i;
            }
        }
        return min;
    }
}