题目描述:
(1)给你一个字符串 s 和一个整数数组 cost ,其中 cost[i] 是从 s 中删除字符 i 的代价。(2)返回使字符串任意相邻两个字母不相同的最小删除成本。
(3)请注意,删除一个字符后,删除其他字符的成本不会改变。
示例 1:
输入:s = "abaac", cost = [1,2,3,4,5]
输出:3
解释:删除字母 "a" 的成本为 3,然后得到 "abac"(字符串中相邻两个字母不相同)。
示例 2:
输入:s = "abc", cost = [1,2,3]
输出:0
解释:无需删除任何字母,因为字符串中不存在相邻两个字母相同的情况。
示例 3:
输入:s = "aabaa", cost = [1,2,3,4,1]
输出:2
解释:删除第一个和最后一个字母,得到字符串 ("aba") 。
题目主要的目的是删除字符串s中的重复的字母,然后通过cost 数组计算出删除元素的最小的值
一连续相同字符中保留cost最大的,用总和减去每个字母的最大cost,即为答案
方法一
class Solution {
public int minCost(String s, int[] cost) {
int res=0;
int tmp;
for (int i = 0; i <s.length()-1 ; i++) {
if (s.charAt(i)==s.charAt(i+1)){
// 我们把连续字符中最大的留下来就可以了
res+=Math.min(cost[i],cost[i+1]);
// 把两个数中较大的移到后面,方便比较
if (cost[i]>cost[i+1]){
cost[i+1]=cost[i];
}
}
}
return res;
}
}
方法二
class Solution {
public int minCost(String s, int[] cost) {
int total = 0;
int i = 0;
for (i=0; i<s.length(); i++) {
int max = cost[i];
int sum = cost[i];
while (i+1 < s.length() && s.charAt(i) == s.charAt(i+1)) {
i++;
sum += cost[i];
max = Math.max(cost[i], max);
}
total = total + sum - max;
}
return total;
}
}
题目:https://leetcode-cn.com