LeetCode 514----Freedom Trail
问题描述
In the video game Fallout 4, the quest "Road to Freedom" requires players to reach a metal dial called the "Freedom Trail Ring", and use the dial to spell a specific keyword in order to open the door.
Given a string ring, which represents the code engraved on the outer ring and another string key, which represents the keyword needs to be spelled. You need to find the minimum number of steps in order to spell all the characters in the keyword.
Initially, the first character of the ring is aligned at 12:00 direction. You need to spell all the characters in the string key one by one by rotating the ring clockwise or anticlockwise to make each character of the string key aligned at 12:00 direction and then by pressing the center button.
At the stage of rotating the ring to spell the key character key[i]:
- You can rotate the ring clockwise or anticlockwise one place, which counts as 1 step. The final purpose of the rotation is to align one of the string ring's characters at the 12:00 direction, where this character must equal to the character key[i].
- If the character key[i] has been aligned at the 12:00 direction, you need to press the center button to spell, which also counts as 1 step. After the pressing, you could begin to spell the next character in the key (next stage), otherwise, you've finished all the spelling.
Example:

Input: ring = "godding", key = "gd"
Output: 4
Explanation: For the first key character 'g', since it is already in place, we just need 1 step to spell this character. For the second key character 'd', we need to rotate the ring "godding" anticlockwise by two steps to make it become "ddinggo". Also, we need 1 more step for spelling. So the final output is 4.
Note:
- Length of both ring and key will be in range 1 to 100.
- There are only lowercase letters in both strings and might be some duplcate characters in both strings.
- It's guaranteed that string key could always be spelled by rotating the string ring.
算法分析:
该题需要使用动态规划算法进行计算
先声明一个二维的动态规划表 int [][] dp=new int[key.length()][ring.length()]; dp[i][j] 的值表示转动到 key 中的第 i 个字符在 ring 中第 j 个位置时总共需要的转动 step (不包括按下 button 键的 step )。
状态转移方程:
dp[i][j]=min(dp[i][j],dp[i-1][k]+min(abs(j-k),ring.leng()-abs(j-k))).
该方程中,i 表示当前考察的 key 中的字符在 key 中的下标,j 表示当前考察的字符在 ring 中的下标,k 表示上一个考察的字符在 ring 中的下标。
Java 算法实现:
public class Solution {
public int findRotateSteps(String ring, String key) {
ArrayList<Integer>[] list=new ArrayList[128];
char ch;
for(int i=0;i<ring.length();i++){//统计ring中所有的字符在ring中的下标
ch=ring.charAt(i);
if(list[ch]==null){
list[ch]=new ArrayList<Integer>();
}
list[ch].add(i);
}
int ringLoop=ring.length();
int[][]dp=new int[key.length()][ring.length()];
for(Integer index:list[key.charAt(0)]){//对 key 中第一个字符在 ring 中的位置进行记录
dp[0][index]=Math.min(index, ringLoop-index);
}
char former=key.charAt(0),cur;
for(int i=1;i<key.length();i++){//动态规划算法
cur=key.charAt(i);
for(Integer indexCur:list[cur]){//遍历当前考察的字符在 ring 中的位置
dp[i][indexCur]=Integer.MAX_VALUE;
for(Integer indexFormer:list[former]){//遍历上一个字符在 ring 中的位置
int distance=Math.abs(indexCur-indexFormer);//当前考察的字符与上一个考察的字符在 ring 中的距离
dp[i][indexCur]=Math.min(dp[i][indexCur], dp[i-1][indexFormer]+Math.min(distance,ringLoop-distance));
}
}
former=cur;
}
int mindist=Integer.MAX_VALUE;
int depth=key.length()-1;// key 中最后一个字符的下标
for(Integer lastIndex:list[key.charAt(depth)]){//遍历 key 中最后一个字符在 ring 中的所有位置
if(mindist>dp[depth][lastIndex]){ //找到到达 key 中最后一个字符所需的最小 step 数
mindist=dp[depth][lastIndex];
}
}
return mindist+key.length(); //总的 step 数要包括按下 button 键的次数
}
}
LeetCode 514----Freedom Trail的更多相关文章
- 514. Freedom Trail
In the video game Fallout 4, the quest "Road to Freedom" requires players to reach a metal ...
- 514 Freedom Trail 自由之路
详见:https://leetcode.com/problems/freedom-trail/description/ C++: class Solution { public: int findRo ...
- [LeetCode] Freedom Trail 自由之路
In the video game Fallout 4, the quest "Road to Freedom" requires players to reach a metal ...
- [Swift]LeetCode514. 自由之路 | Freedom Trail
In the video game Fallout 4, the quest "Road to Freedom" requires players to reach a metal ...
- Java实现 LeetCode 514 自由之路
514. 自由之路 视频游戏"辐射4"中,任务"通向自由"要求玩家到达名为"Freedom Trail Ring"的金属表盘,并使用表盘拼写 ...
- Leetcode 514.自由之路
自由之路 视频游戏"辐射4"中,任务"通向自由"要求玩家到达名为"Freedom Trail Ring"的金属表盘,并使用表盘拼写特定关键词 ...
- 动态规划——Freedom Trail
题目:https://leetcode.com/problems/freedom-trail/ 额...不解释大意了,题目我也不想写过程了有点繁琐,直接给出代码: public int findRot ...
- LeetCode All in One题解汇总(持续更新中...)
突然很想刷刷题,LeetCode是一个不错的选择,忽略了输入输出,更好的突出了算法,省去了不少时间. dalao们发现了任何错误,或是代码无法通过,或是有更好的解法,或是有任何疑问和建议的话,可以在对 ...
- All LeetCode Questions List 题目汇总
All LeetCode Questions List(Part of Answers, still updating) 题目汇总及部分答案(持续更新中) Leetcode problems clas ...
- Leetcode problems classified by company 题目按公司分类(Last updated: October 2, 2017)
All LeetCode Questions List 题目汇总 Sorted by frequency of problems that appear in real interviews. Las ...
随机推荐
- netty用户指南
Netty用户指南 一.前言 1.问题 当今世界我们需要使用通用的软件或库与其他组件进行通信,例如使用HTTP客户端从服务器中获取信息,或通过网络服务调用一个远程的方法.然而通用的协议及其实现通常不具 ...
- spring boot快速入门 10: 日志使用
第一步:pom 文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns=" ...
- 测试Servlet生命周期例子程序
写一个类TestLifeCycleServlet,生成构造器TestLifeCycleServlet();重写HttpServlet的doGet();重写GenericServlet的destroy( ...
- PHP 浮点数 转化 整数方法对比 ceil,floor,round,intval,number_format
ceil,floor,round,intval,number_format - 执行1000W此效率对比 Header("Content-Type:text/html;charset=utf ...
- AngularJS指令详解
一.什么是指令? 在<AngularJs权威教程>中,指令可以简单理解成特定的DOM元素上运行的函数:我认为还可以理解成将将自定义的HTML标签解析成原始的标签,然后为其加入一些扩展的功能 ...
- manjaro 清理系统
sudo pacman -Rsn $(pacman -Qdtq) sudo pacman -Scc sudo rm /var/lib/systemd/coredump/. sudo journalct ...
- 错误:‘lock_guard’ 在此作用域中尚未声明
解决:修改报错文件,加入#include <boost/thread/lock_guard.hpp>
- JVM启动报错: Could not reserve enough space for object heap error
首先了解一下参数的含义: 参数 含义 -Xms2G -Xmx2G 代表jvm可用的heap内存最小和最大 -XX:PermSize -XX:MaxPermSize 代表jvm的metadata内存的大 ...
- 利用 ICEpdf 快速实现 pdf 文件预览功能
之前工作中,需要实现一个在线预览pdf的功能,一开始用的的 jQuery-media 插件来实现的,后来感觉有点慢,就继续寻找更好的替代品,直到遇见了 ICE pdf... ICEpdf (官网:ht ...
- linux目录(转载)
目录 1.树状目录结构图 2./目录 3./etc/目录 4./usr/目录 5./var/目录 6./proc/目录 7./dev/目录 该文章主要来自于网络进行整理. 目录结构参考地址: http ...