- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
Given two string str1 and str2 which contain only
0
or1
, thereare some steps to change str1 to str2,step1: find a substring of str1 of length 2 and reverse the substring, and str1 becomes str1' (str1' != str1)
step2: find a substring of str1' of length 3, and reverse the substring, and str1' becomes str1'' (str1'' != str1')
the following steps are similar.
the string length is in the range [2, 30]
Requirement: each step must be performed once and we can not skipprevious steps and perform the next step.
If it is possible to change str1 to str2, output the minimum steps required, otherwise, output -1
str1 = "1010", str2 = "0011", the minimum step required is 2
first, choose substring in range [2, 3], "1010" --> "1001",
then choose substring in the range [0, 2], "1001" --> "0011"
str1 = "1001", str2 = "0110", it is impossible to change str1 to str2,because in step1, str1 can be changed to "0101" or "1010", but in step3, it is impossible to change a length3 substring to make it different. So the output is -1.
str1 = "10101010", str2 = "00101011", output is 7
我想不通示例 3,因为有两种可能性。任何人都可以就如何解决这个问题给出一些提示吗?这是什么类型的问题?是动态规划吗?
最佳答案
这实际上是一个动态规划问题。为了解决这个问题,我们将尝试所有可能的排列,但一路上记住结果。似乎有太多选择 - 有 2^30
长度为 30 的不同二进制字符串,但请记住,恢复字符串不会改变我们拥有的零和一的数量,所以上限实际上是 30 choose 15 = 155117520
当我们有一个由 15 个 0 和 1 组成的字符串时。大约 1.5 亿个可能的结果还算不错。
因此,从我们的 start
字符串开始,我们将从目前派生的每个字符串中派生出所有可能的字符串,直到生成 end
字符串。我们也将追踪前辈来重建一代。这是我的代码:
start = '10101010'
end = '00101011'
dp = [{} for _ in range(31)]
dp[1][start] = '' # Originally only start string is reachable
for i in range(2, len(start) + 1):
for s in dp[i - 1].keys():
# Try all possible reversals for each string in dp[i - 1]
for j in range(len(start) - i + 1):
newstr = s
newstr = newstr[:j] + newstr[j:j+i][::-1] + newstr[j+i:]
dp[i][newstr] = s
if end in dp[i]:
ans = []
cur = end
for j in range(i, 0, -1):
ans.append(cur)
cur = dp[j][cur]
print(ans[::-1])
exit(0)
print('Impossible!')
对于您的第三个示例,这为我们提供了序列 ['10101010', '10101001', '10101100', '10100011', '00101011']
- 从您的 str1 到 str2。如果您检查字符串之间的差异,您将看到进行了哪些转换。所以这个转换可以通过 4 个步骤完成,而不是像你建议的那样 7 个步骤。
最后,对于 30 位的 python 来说,这会有点慢,但是如果你将它重写成 C++,它会最多几秒钟。
关于string - 找到将一个二进制字符串更改为另一个所需的最少步骤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46233522/
我有一个依赖于包 B 的包 A。当包 A 中的代码运行并访问包 B 中的类时,包 B 的状态将被解析 (4),而不是 Activity (32) 和包 B 的激活器也没跑好。我认为 bundle B
这个问题在这里已经有了答案: How to remove the space between inline/inline-block elements? (41 个回答) 关闭 7 年前。
我正在尝试使用 Java OpenAL 库。我在导入名为 libsoft_oal.so 的 native 库时遇到问题。 Java OpenAL 依赖于 OpenAL 软实现。我尝试根据他们在 git
我正在尝试启动我的应用程序。是一个 unicorn +工头+sinatra的应用。 这是我的 config.ru 文件: require "rubygems" require "sinatra" Bu
我有一个下拉列表,其中包含一些从数据库表中检索的值,我想要的是当单击按钮时它应该只获得选项标签的中间值,但只有那些类名为“get_this”的选项标签并离开那些选项,如果他们没有这个类 预期输出:值
我有一个index.php文件,需要一个通用的head.php文件,head.php文件中有几个Javascript文件,当这样尝试时,代码在源代码中看起来很好,但文件却不是实际上对文档做任何事情。
有人能帮帮我吗? 我已经像这样运行了 imsmod: $ insmod /data/mm/mmdev.ko epoll_rate=100 但是我得到一个错误: insmod: init_module
是否有键盘快捷键或插件可以在 Notepad++ 中打开 PHP 所需或包含的文件?我知道,在 Dreamweaver 中,执行此操作的命令是 Ctrl+D,但我似乎无法在 Notepad++ 中找到
我已经用 js 设置了一个显示/隐藏 div,但我很难弄清楚如何一次显示一个 div。目前发生的情况是,除非我再次单击原始链接来关闭该 div,否则每个 div 都会显示。 http://www.li
当我尝试将未分配的辅助分片分配给节点时出现错误。 { "error": { "root_cause": [ { "type": "remote_transpor
我正在构建一个 C++ 应用程序,使用 Netbeans 6.9 作为我的 IDE。我有一个 C++ 库,它是一个纯 C 库的包装器。 我已将文件正确添加到项目中(使用添加库文件选项)。这是 g++
我是一名优秀的程序员,十分优秀!