2023-07-31 Daily Challenge
Today I have done leetcode's July LeetCoding Challenge with cpp
.
July LeetCoding Challenge 31
Description
Minimum ASCII Delete Sum for Two Strings
Given two strings s1
and s2
, return the lowest ASCII sum of deleted characters to make two strings equal.
Example 1:
Input: s1 = "sea", s2 = "eat" Output: 231 Explanation: Deleting "s" from "sea" adds the ASCII value of "s" (115) to the sum. Deleting "t" from "eat" adds 116 to the sum. At the end, both strings are equal, and 115 + 116 = 231 is the minimum sum possible to achieve this.
Example 2:
Input: s1 = "delete", s2 = "leet" Output: 403 Explanation: Deleting "dee" from "delete" to turn the string into "let", adds 100[d] + 101[e] + 101[e] to the sum. Deleting "e" from "leet" adds 101[e] to the sum. At the end, both strings are equal to "let", and the answer is 100+101+101+101 = 403. If instead we turned both strings into "lee" or "eet", we would get answers of 433 or 417, which are higher.
Constraints:
1 <= s1.length, s2.length <= 1000
s1
ands2
consist of lowercase English letters.
Solution
class Solution {
public:
int minimumDeleteSum(string s1, string s2) {
int len1 = s1.length(), len2 = s2.length();
vector<int> dp(len2+1);
for(int i = 0; i < len1; ++i) {
int prev = 0;
for(int j = 1; j <= len2; ++j) {
int originVal = dp[j];
dp[j] = max(dp[j], dp[j - 1]);
if(s2[j - 1] == s1[i]) dp[j] = max(dp[j], prev + s1[i]);
prev = originVal;
}
}
int sum = 0;
for(auto c : s1) sum += c;
for(auto c : s2) sum += c;
return sum - 2 * dp.back();
}
};
// Accepted
// 93/93 cases passed (24 ms)
// Your runtime beats 90.09 % of cpp submissions
// Your memory usage beats 96.88 % of cpp submissions (6.6 MB)