664. Strange Printer

本文探讨了一种特殊打印机的打印逻辑,该打印机只能一次打印相同字符的序列,并可以在任意位置开始和结束覆盖原有字符。文章通过三个动态规划方法(C++, Java, Python)详细解析了如何求解给定字符串的最小打印次数,提供了清晰的代码实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

There is a strange printer with the following two special requirements:

  1. The printer can only print a sequence of the same character each time.
  2. At each turn, the printer can print new characters starting from and ending at any places, and will cover the original existing characters.

 

Given a string consists of lower English letters only, your job is to count the minimum number of turns the printer needed in order to print it.

Example 1:

Input: "aaabbb"
Output: 2
Explanation: Print "aaa" first and then print "bbb".

 

Example 2:

Input: "aba"
Output: 2
Explanation: Print "aaa" first and then print "b" from the second place of the string, which will cover the existing character 'a'.

 

Hint: Length of the given string will not exceed 100.

 

Approach #1: DP. [C++]

class Solution {
public:
    int strangePrinter(string s) {
        int len = s.length();
        dp = vector<vector<int>>(len+1, vector<int>(len+1, 0));
        return turn(s, 0, len-1);
    }
    
private:
    vector<vector<int>> dp;
    
    int turn(const string& s, int i, int j) {
        if (i > j) return 0;
        if (dp[i][j] != 0) return dp[i][j];
        int ans = turn(s, i, j-1) + 1;
        
        for (int k = i; k < j; ++k)
            if (s[k] == s[j])
                ans = min(ans, turn(s, i, k)+turn(s, k+1, j-1));
        dp[i][j] = ans;
        return dp[i][j];
    }
};

  

 

Approach #2: DP. [Java]

class Solution {
    public int strangePrinter(String s) {
        int len = s.length();
        t_ = new int[len][len];
        return turn(s.toCharArray(), 0, len-1);
    }
    
    public int turn(char[] s, int i, int j) {
        if (i > j) return 0;
        if (t_[i][j] > 0) return t_[i][j];
        
        int ans = turn(s, i, j-1) + 1;
        
        for (int k = i; k < j; ++k) {
            if (s[k] == s[j]) 
                ans = Math.min(ans, turn(s, i, k) + turn(s, k+1, j-1));
        }
        
        t_[i][j] = ans;
        
        return t_[i][j];
    }
    
    private int[][] t_;
}

  

 

Approach #3: DP. [Python]

class Solution(object):
    def strangePrinter(self, s):
        """
        :type s: str
        :rtype: int
        """
        l = len(s)
        self._t = [[0 for _ in xrange(l)] for _ in xrange(l)]
        
        return self.turn(s, 0, l-1)
    
    def turn(self, s, i, j):
        if i > j:
            return 0
        if self._t[i][j] > 0:
            return self._t[i][j]
        
        ans = self.turn(s, i, j-1) + 1
        
        for k in xrange(i, j):
            if s[k] == s[j]:
                ans = min(ans, self.turn(s, i, k) + self.turn(s, k+1, j-1))
                
        self._t[i][j] = ans
        
        return self._t[i][j]

  

 

Reference:

http://zxi.mytechroad.com/blog/dynamic-programming/leetcode-664-strange-printer/

 

转载于:https://www.cnblogs.com/ruruozhenhao/p/10517462.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值