在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ There is a special keyboard with all keys in a single row. Given a string You want to type a string Example 1: Input: keyboard = "abcdefghijklmnopqrstuvwxyz", word = "cba" Output: 4 Explanation: The index moves from 0 to 2 to write 'c' then to 1 to write 'b' then to 0 again to write 'a'. Total time = 2 + 1 + 1 = 4. Example 2: Input: keyboard = "pqrstuvwxyzabcdefghijklmno", word = "leetcode" Output: 73 Constraints:
我们定制了一款特殊的力扣键盘,所有的键都排列在一行上。 我们可以按从左到右的顺序,用一个长度为 26 的字符串 现在需要测试这个键盘是否能够有效工作,那么我们就需要个机械手来测试这个键盘。 最初的时候,机械手位于左边起第一个键(也就是索引为 0 的键)的上方。当机械手移动到某一字符所在的键位时,就会在终端上输出该字符。 机械手从索引 当前测试需要你使用机械手输出指定的单词 示例 1: 输入:keyboard = "abcdefghijklmnopqrstuvwxyz", word = "cba" 输出:4 解释: 机械手从 0 号键移动到 2 号键来输出 'c',又移动到 1 号键来输出 'b',接着移动到 0 号键来输出 'a'。 总用时 = 2 + 1 + 1 = 4. 示例 2: 输入:keyboard = "pqrstuvwxyzabcdefghijklmno", word = "leetcode" 输出:73 提示:
Runtime: 24 ms
Memory Usage: 21.1 MB
1 class Solution { 2 func calculateTime(_ keyboard: String, _ word: String) -> Int { 3 let arr:[Character] = Array(keyboard) 4 var map:[Character:Int] = [Character:Int]() 5 for i in 0..<arr.count 6 { 7 map[arr[i]] = i 8 } 9 var currPos:Int = 0 10 var totalTime:Int = 0 11 for c in word 12 { 13 totalTime += abs(currPos - map[c]!) 14 currPos = map[c]! 15 } 16 return totalTime 17 } 18 }
|
请发表评论