1332. Remove Palindromic Subsequences

Source: https://leetcode.com/problems/remove-palindromic-subsequences/

Given a string s consisting only of letters ‘a’ and ‘b’. In a single step you can remove one palindromic subsequence from s.

Return the minimum number of steps to make the given string empty.

A string is a subsequence of a given string, if it is generated by deleting some characters of a given string without changing its order.

A string is called palindrome if is one that reads the same backward as well as forward.

Example 1:

Input: s = “ababa”
Output: 1
Explanation: String is already palindrome
Example 2:

Input: s = “abb”
Output: 2
Explanation: “abb” -> “bb” -> “”.
Remove palindromic subsequence “a” then “bb”.
Example 3:

Input: s = “baabb”
Output: 2
Explanation: “baabb” -> “b” -> “”.
Remove palindromic subsequence “baab” then “b”.
Example 4:

Input: s = “”
Output: 0

Constraints:

0 <= s.length <= 1000
s only consists of letters ‘a’ and ‘b’

思路:因为只有a和b,可以先把所有a组成的子序列去掉,再去掉所有b组成的子序列。不过如果整个串就是回文,只需要1次。

class Solution {
public:
    bool ispalind(string s){
        int lens=s.length();
        for(int i=0;i<lens/2;i++){
            if(s[i]!=s[lens-1-i]){
                return false;
            }
        }
        return true;
    }
    int removePalindromeSub(string s) {
        int lens=s.length();
        if(lens==0){
            return 0;
        }
        if(ispalind(s)){
            return 1;
        }
        return 2;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值