Leetcode 1578. 避免重复字母的最小删除成本

题目描述:
(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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

北顾丶

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值