热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Leetcode:EncodeStringwithShortestLength&&G面经

DP:InitiallyIthinkof1DDP,dp[i]standsfortheshorteststringoffirsticharacters,then:dp[i]minLe


Given a non-empty string, encode the string such that its encoded length is the shortest.

The encoding rule is: k[encoded_string], where the encoded_string inside the square brackets is being repeated exactly k times.

Note:
k will be a positive integer and encoded string will not be empty or have extra space.
You may assume that the input string contains only lowercase English letters. The string
‘s length is at most 160.
If an encoding process does not make the string shorter, then do not encode it. If there are several solutions, return any of them is fine.
Example
1:

Input:
"aaa"
Output:
"aaa"
Explanation: There is no way to encode it such that it is shorter than the input string, so we
do not encode it.
Example
2:

Input:
"aaaaa"
Output:
"5[a]"
Explanation:
"5[a]" is shorter than "aaaaa" by 1 character.
Example
3:

Input:
"aaaaaaaaaa"
Output:
"10[a]"
Explanation:
"a9[a]" or "9[a]a" are also valid solutions, both of them have the same length = 5, which is the same as "10[a]".
Example
4:

Input:
"aabcaabcd"
Output:
"2[aabc]d"
Explanation:
"aabc" occurs twice, so one answer can be "2[aabc]d".
Example
5:

Input:
"abbbabbbcabbbabbbc"
Output:
"2[2[abbb]c]"
Explanation:
"abbbabbbc" occurs twice, but "abbbabbbc" can also be encoded to "2[abbb]c", so one answer can be "2[2[abbb]c]".


DP: 


Initially I think of 1D DP, dp[i] stands for the shortest string of first i characters, then:


dp[i] = minLen{dp[k] + encode(substring(k+1, i))}


then I realize that the second part encode(substring(k+1, i)) is actually the same with our dp problem. So it turns out the transfer function is


dp[i] = minLen{dp[k] + dp(substring(k+1, i))}


then 1D is not enough, I introduce the second dimension, which indicates the end. dp[i][j] is the shortest encoded string from i to j


But the hardest part of this problem is how to generate dp[i][j] from dp[i][k] and dp[k+1][j]


I‘ve thought about the cases like: 


dp[i][k] = 3[abc]   dp[k+1][j] = 2[abc],   then dp[i][j] = 5[abc]


dp[i][k] = 3[abc]   dp[k+1][j] = xyz,   then dp[i][j] = 3[abc]xyz


dp[i][k] = aabc   dp[k+1][j] = aabc,   then dp[i][j] = 2[aabc]


No idea what to implement this conveniently, so refer to idea  https://discuss.leetcode.com/topic/71963/accepted-solution-in-java


The idea is to firstly concantenate dp[i][k] and dp[k+1][j] directly to construct dp[i][j], and then check if there exist possible repeat patterns in the original substring s.substring(i, j+1) that could further shorten dp[i][j]


replaceAll function is really clever



 1 public class Solution {
2 public String encode(String s) {
3 if (s==null || s.length()==0) return "";
4 String[][] dp = new String[s.length()][s.length()];
5
6 for (int len=0; len) {
7 for (int i=0; i+len) {
8 int j = i + len;
9 String subStr = s.substring(i, j+1);
10 dp[i][j] = subStr; //initialize
11 if (len <4) continue;
12 for (int k=i; k) {
13 if (dp[i][k].length() + dp[k+1][j].length() < dp[i][j].length()) {
14 dp[i][j] = dp[i][k] + dp[k+1][j];
15 }
16 }
17
18 //check if subStr has repeat pattern
19 for (int k=i; k) {
20 String repeat = s.substring(i, k+1);
21 if (subStr.length()%(k-i+1)==0 && subStr.replaceAll(repeat, "").length()==0) {
22 String ss = subStr.length()/repeat.length() + "[" + dp[i][k] + "]";
23 if (ss.length() < dp[i][j].length())
24 dp[i][j] = ss;
25 }
26 }
27 }
28 }
29 return dp[0][s.length()-1];
30 }
31 }


Leetcode: Encode String with Shortest Length && G面经



推荐阅读
  • 本文介绍如何使用 NSTimer 实现倒计时功能,详细讲解了初始化方法、参数配置以及具体实现步骤。通过示例代码展示如何创建和管理定时器,确保在指定时间间隔内执行特定任务。 ... [详细]
  • 本文介绍如何使用阿里云的fastjson库解析包含时间戳、IP地址和参数等信息的JSON格式文本,并进行数据处理和保存。 ... [详细]
  • 本文探讨了如何通过最小生成树(MST)来计算严格次小生成树。在处理过程中,需特别注意所有边权重相等的情况,以避免错误。我们首先构建最小生成树,然后枚举每条非树边,检查其是否能形成更优的次小生成树。 ... [详细]
  • QUIC协议:快速UDP互联网连接
    QUIC(Quick UDP Internet Connections)是谷歌开发的一种旨在提高网络性能和安全性的传输层协议。它基于UDP,并结合了TLS级别的安全性,提供了更高效、更可靠的互联网通信方式。 ... [详细]
  • 深入理解OAuth认证机制
    本文介绍了OAuth认证协议的核心概念及其工作原理。OAuth是一种开放标准,旨在为第三方应用提供安全的用户资源访问授权,同时确保用户的账户信息(如用户名和密码)不会暴露给第三方。 ... [详细]
  • 深入理解 Oracle 存储函数:计算员工年收入
    本文介绍如何使用 Oracle 存储函数查询特定员工的年收入。我们将详细解释存储函数的创建过程,并提供完整的代码示例。 ... [详细]
  • 深入理解Cookie与Session会话管理
    本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]
  • 本文介绍了一款用于自动化部署 Linux 服务的 Bash 脚本。该脚本不仅涵盖了基本的文件复制和目录创建,还处理了系统服务的配置和启动,确保在多种 Linux 发行版上都能顺利运行。 ... [详细]
  • 本文介绍如何通过Windows批处理脚本定期检查并重启Java应用程序,确保其持续稳定运行。脚本每30分钟检查一次,并在需要时重启Java程序。同时,它会将任务结果发送到Redis。 ... [详细]
  • 本文介绍如何在应用程序中使用文本输入框创建密码输入框,并通过设置掩码来隐藏用户输入的内容。我们将详细解释代码实现,并提供专业的补充说明。 ... [详细]
  • 本文介绍了在Windows环境下使用pydoc工具的方法,并详细解释了如何通过命令行和浏览器查看Python内置函数的文档。此外,还提供了关于raw_input和open函数的具体用法和功能说明。 ... [详细]
  • 在计算机技术的学习道路上,51CTO学院以其专业性和专注度给我留下了深刻印象。从2012年接触计算机到2014年开始系统学习网络技术和安全领域,51CTO学院始终是我信赖的学习平台。 ... [详细]
  • CSS 布局:液态三栏混合宽度布局
    本文介绍了如何使用 CSS 实现液态的三栏布局,其中各栏具有不同的宽度设置。通过调整容器和内容区域的属性,可以实现灵活且响应式的网页设计。 ... [详细]
  • Splay Tree 区间操作优化
    本文详细介绍了使用Splay Tree进行区间操作的实现方法,包括插入、删除、修改、翻转和求和等操作。通过这些操作,可以高效地处理动态序列问题,并且代码实现具有一定的挑战性,有助于编程能力的提升。 ... [详细]
  • 本实验主要探讨了二叉排序树(BST)的基本操作,包括创建、查找和删除节点。通过具体实例和代码实现,详细介绍了如何使用递归和非递归方法进行关键字查找,并展示了删除特定节点后的树结构变化。 ... [详细]
author-avatar
瓦尔登湖
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有