当前位置: 代码迷 >> 综合 >> Leetcode 1578: 避免重复字母的最小删除成本
  详细解决方案

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

热度:6   发布时间:2024-02-21 16:23:31.0

题目描述

给你一个字符串 s 和一个整数数组 cost ,其中 cost[i] 是从 s 中删除字符 i 的代价。

返回使字符串任意相邻两个字母不相同的最小删除成本。

请注意,删除一个字符后,删除其他字符的成本不会改变。

 

示例 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.length == cost.length
1 <= s.length, cost.length <= 10^5
1 <= cost[i] <= 10^4
s 中只含有小写英文字母
通过次数4,126提交次数6,928

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/minimum-deletion-cost-to-avoid-repeating-letters
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

 

 

解题思路

class Solution {
public:int minCost(string s, vector<int>& cost) {if(s.length() != cost.size()) return 0;int n = s.length();int ans = 0;int pre = -1;for(int cur = 0; cur < n; cur++){if(pre == -1 || (pre >=0 && s[pre] != s[cur])){pre = cur;continue;}int del = pre;if(cost[cur] < cost[del]) del = cur;pre = (del == pre)?cur:pre;ans += cost[del];}return ans;}
};