- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
这是https://www.dailycodingproblem.com/的问题:
Given a string, find the palindrome that can be made by inserting the fewest number of characters as possible anywhere in the word. If there is more than one palindrome of minimum length that can be made, return the lexicographically earliest one (the first one alphabetically).
For example, given the string "race", you should return "ecarace", since we can add three letters to it (which is the smallest amount to make a palindrome). There are seven other palindromes that can be made from "race" by adding three letters, but "ecarace" comes first alphabetically.
As another example, given the string "google", you should return "elgoogle".
类似于this所以问题,或this GeeksforGeeks 帖子。相似,但不相同;他们都没有对重复出现提供任何解释,就好像他们凭空抽出解决方案一样,他们也没有重建解决方案,更不用说字典编年史最早的解决方案了。
经过一番思考,我的理解如下:
Observe that for any string
s[i..j]
, ifs[i] == s[j]
, then the number of insertions required to make it a palindrome is the same as the number of insertions required to makes[i+1..j-1]
a palindrome.If, however,
s[i] != s[j]
, then we may converts[i..j-1]
to a palindrome and then inserts[j]
at the beginning, or converts[i+1..j]
to a palindrome and inserts[i]
at the end. Since we are looking for the fewest number of insertions, we will choose the minimum of the two options. The number of insertions is one more than the number of insertions required for the chosen subproblem (for adding a character at the beginning or at the end).
如何重建字典序最早的解决方案?
最佳答案
首先,让我们回答“我如何重建解决方案”,然后关注排序。假设您将插入的数量存储在二维矩阵 insertions[start][stop]
中,您只需要追溯您的步骤,“收集”插入的字符。我们需要一个新数组来存储输出字符串,其长度等于我们的起始字符串加上最小插入次数。我们还将存储两个索引,指向数组中前后的下一个可用点。
首先比较当前子字符串的第一个和最后一个字母,如果相等,则分别在从前到后的下一个可用位置分配这两个输出字符串。例如,如果我们将 FYRF
作为当前子字符串,我们将分配我们的输出字符串 F..F
,其中 .
是未确定的字符.然后我们的子串变成 s[i+1..j-1]
或 YR
。
如果两个字符不匹配,我们将比较 insertions[i+1][j]
和 insertions[i][j-1]
,看看哪个更小(至少有一个比 insertions[i][j]
小一个)。如果它们相等,则只选择一个(稍后我们将返回)。将输出字符串中对应于我们复制/插入的子字符串的字母的字符分配到输出字符串的下一个可用前后索引处。也就是说,在 JLL
的情况下,如果我们决定为 JLLJ
添加一个 J
,我们将采用子字符串 s[ i+1..j]
,因此我们将在输出字符串 J..J
中存储 J
和 J
。如果我们的输出字符串已经包含 AR....RA
,我们将存储 ARJ..JRA
。我们重复整个过程,直到分配完所有字符。
现在,让它按字典顺序排列。关于上一段中 insertions[i+1][j]
和 insertions[i][j-1]
相等的情况,我们不应该选择一个他们是随机的。相反,我们应该按字典顺序比较 s[i]
和 s[i+1]
,如果 s[i]
先出现,则插入 s[i]
到输出字符串/继续 insertions[i+1][j]
。否则,使用 s[i+1]
/insertions[i][j-1]
。这将为我们提供所有可用选项中字典顺序最快的字符串。
关于string - 将字符串转换为插入次数最少的回文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55178669/
我一直在使用 less 进行前端开发,但最近几天我遇到了这个错误。 我正在使用 PhpStorm 的观察器将 less 文件编译为 css 文件。但是当我编辑 less 文件时,编译器将这一行添加到
我在互联网上搜索Erlang的流程模型并找到了一些图表 slides 3-4在乔·阿姆斯特朗的一次演讲中。它们显示了 Erlang、java 和 C# 之间进程创建和消息传递时间之间的许多差异。谁能告
我怎样才能用更少的钱创建这个类? .class { display: none; } a:hover .class { display: block; } 最佳答案 像这样? .cla
全部,我有一些代码在 less 中做一个循环。但是如果我把px改成'%',less就不能编译less文件。我该怎么做呢?谢谢。 @iterations: 100; // helper class, w
According to the docs如果我做类似的事情: .child, .sibling { .parent & { color: black; } &
这是一个现有的通用 css 规则(原始文件): .caption-top { color: red; } 这是示意图,因为在现实生活中,我需要根据上下文将 .caption-top 选择器变成其他
所以问题是我想连接到msaccess 数据库,每次打开它时都有密码。 如果我直接打开 Access 文件,密码就有效。 如果我删除密码,我可以建立连接,这意味着如果不涉及密码,我的代码可以工作 密码是
news.less 看起来像这样; @import: "libs/base.less" base.less 看起来像这样; @import "colors.less"; @
当我在这里使用 WINLess 编译这段代码时出现错误: .icon-text-shadow (@icon-text-shadow: 0.0625rem 0.0625rem rgba(132, 108
我正在处理大型矩阵,例如 Movielens 20m dataset .我重组了在线文件,使其与页面上提到的尺寸(138000 x 27000)相匹配,因为原始文件包含的索引更大(138000 x 1
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我是 Android 新手,刚来这里。 我只知道 Bitmap 逐像素存储图像并且不进行任何压缩。 Drawable和Bitmap一样吗? 或者 同样的图片文件,Drawable 比 Bitmap 占
我是一名前端开发人员,最近考虑使用 SASS 或 LESS 进行 CSS 开发。 不过,我不使用 Ruby,也不想依赖于使用 JavaScript 的用户。有没有人对使用 PHP 项目使用 SASS
我需要将日历添加到表单中。 我想安装这个项目: https://github.com/vitalets/bootstrap-datepicker 但据说: 某些样式需要 Bootstrap 的下拉组件
如果您运行如下代码: length(unique(runif(10000000))) length(unique(rnorm(10000000))) 你会看到只有大约 99.8% 的 runif 值是
我正在这样做Question首先使用 PriorityQueue 解决了这个问题:- public ArrayList solve(int A, int B, int C, int D) {
基本上就是标题所说的。我知道如果我只有一个字母,我可以使用 char 作为类型,但我需要 2 个字母的数据类型,例如“XY”。有没有比字符串使用更少存储空间(位)或更小的东西?或者多个字母通常只是保存
我有两个表,用户表和程序表。现在我只有 5-10 个计划和数以万计的用户,他们可以注册任何一个计划(也可以注册多个计划)。因此,在多对多关系的情况下,我正在考虑创建一个单独的表,例如 link_use
我们有一个基于 LESS 的样式表,我们希望为其生成多种颜色变化。我们已经定义了一个包含颜色变化(现在为 blue.less)的包含文件,并希望生成和使用该包含文件的绿色和红色变化。 我们想要做的是通
我想知道我是否可以改进我的 LESS-Snippet。我有很多带有颜色名称的变量/我自己的颜色标题和相关的前景和背景颜色。我根据我的颜色定义类名称。 @logocolorgreen: #40FF01;
我是一名优秀的程序员,十分优秀!