Skip to main content

Command Palette

Search for a command to run...

LeetCode Solution, Easy, 1629. Slowest Key

尋找最慢的 Key

Published

I am not a programmer just a leaner. Writing JavaScript, Python, and Go and doing something on Kubernetes.

1629. Slowest Key

題目敘述

A newly designed keypad was tested, where a tester pressed a sequence of n keys, one at a time.

You are given a string keysPressed of length n, where keysPressed[i] was the ith key pressed in the testing sequence, and a sorted list releaseTimes, where releaseTimes[i] was the time the ith key was released. Both arrays are 0-indexed. The 0th key was pressed at the time 0, and every subsequent key was pressed at the exact time the previous key was released.

The tester wants to know the key of the keypress that had the longest duration. The ith keypress had a duration of releaseTimes[i] - releaseTimes[i - 1], and the 0th keypress had a duration of releaseTimes[0].

Note that the same key could have been pressed multiple times during the test, and these multiple presses of the same key may not have had the same duration.

Return the key of the keypress that had the longest duration. If there are multiple such keypresses, return the lexicographically largest key of the keypresses.

Example 1:

Input: releaseTimes = [9,29,49,50], keysPressed = "cbcd"
Output: "c"
Explanation: The keypresses were as follows:
Keypress for 'c' had a duration of 9 (pressed at time 0 and released at time 9).
Keypress for 'b' had a duration of 29 - 9 = 20 (pressed at time 9 right after the release of the previous character and released at time 29).
Keypress for 'c' had a duration of 49 - 29 = 20 (pressed at time 29 right after the release of the previous character and released at time 49).
Keypress for 'd' had a duration of 50 - 49 = 1 (pressed at time 49 right after the release of the previous character and released at time 50).
The longest of these was the keypress for 'b' and the second keypress for 'c', both with duration 20.
'c' is lexicographically larger than 'b', so the answer is 'c'.

Example 2:

Input: releaseTimes = [12,23,36,46,62], keysPressed = "spuda"
Output: "a"
Explanation: The keypresses were as follows:
Keypress for 's' had a duration of 12.
Keypress for 'p' had a duration of 23 - 12 = 11.
Keypress for 'u' had a duration of 36 - 23 = 13.
Keypress for 'd' had a duration of 46 - 36 = 10.
Keypress for 'a' had a duration of 62 - 46 = 16.
The longest of these was the keypress for 'a' with duration 16.

Constraints:

  • releaseTimes.length == n
  • keysPressed.length == n
  • 2 <= n <= 1000
  • 1 <= releaseTimes[i] <= 109
  • releaseTimes[i] < releaseTimes[i+1]
  • keysPressed contains only lowercase English letters.

Hint 1:

Get for each press its key and amount of time taken.

Hint 2:

Iterate on the presses, maintaining the answer so far.

Hint 3:

The current press will change the answer if and only if its amount of time taken is longer than that of the previous answer, or they are equal but the key is larger than that of the previous answer.

題目翻譯

給一個字串 keysPressed 和一個排序過的佇列 releaseTimes。其中相同的 keysPressed 的字母會重複。相同索引下,releaseTimes 的值會表示當前執行時間。

解法解析

這題的解法,是使用基本的 Dyanmic programming 的方式。每一次迴圈裡面去計算最慢的 key,有點類似 JavaScript 中 reduce 的功能。 也因為只有用一個迴圈處理,所以 Time complexity 只有 O(n),而只要用一個變數儲存目前的最慢的 key,所以 Space complexity 只有 O(1)

程式範例

Python
class Solution:
    def slowestKey(self, releaseTimes: List[int], keysPressed: str) -> str:
        n = len(releaseTimes)
        max_diff = releaseTimes[0]
        result = keysPressed[0]

        for i in range(1, n):
            diff = releaseTimes[i] - releaseTimes[i-1]
            if diff > max_diff or (diff == max_diff and keysPressed[i] > result):
                max_diff = diff
                result = keysPressed[i]

        return result
JavaScript
/**
 * @param {number[]} releaseTimes
 * @param {string} keysPressed
 * @return {character}
 */
var slowestKey = function (releaseTimes, keysPressed) {
    const n = releaseTimes.length;
    let maxDiff = releaseTimes[0];
    let result = keysPressed[0];

    for (let i = 1; i < n; i++) {
        const diff = releaseTimes[i] - releaseTimes[i - 1];
        if (
            diff > maxDiff ||
            (diff === maxDiff && keysPressed[i] > result)
        ) {
            maxDiff = diff;
            result = keysPressed[i];
        }
    }

    return result;
};
Go
func slowestKey(releaseTimes []int, keysPressed string) byte {
    n := len(releaseTimes)
    result := keysPressed[0]
    maxDiff := releaseTimes[0]

    for i := 1; i < n; i++ {
        diff := releaseTimes[i] - releaseTimes[i-1]
        if diff > maxDiff || (diff == maxDiff && keysPressed[i] > result) {
            maxDiff = diff
            result = keysPressed[i]
        }
    }

    return result
}
Swift

```swiftclass Solution { func slowestKey( releaseTimes: [Int], keysPressed: String) -> Character { let keysPressed = Array(keysPressed) var result = Character("?"), maxDiff = Int.min, lastTime = 0

    for i in 0..<keysPressed.count {
        let diff = releaseTimes[i] - lastTime
        lastTime = releaseTimes[i]
        if diff > maxDiff || diff == maxDiff && keysPressed[i] > result {
            maxDiff = diff
            result = keysPressed[i]
        }
    }
    return result
}

}


##### Kotlin

```kotlin
class Solution {
    fun slowestKey(releaseTimes: IntArray, keysPressed: String): Char {
        var result = keysPressed[0]
        var maxDiff = releaseTimes[0]
        var index = 1

        while (index < keysPressed.length) {
            val currentSymbol = keysPressed[index]
            val diff = releaseTimes[index] - releaseTimes[index - 1]

            if (diff > maxDiff || (diff == maxDiff && currentSymbol > result)) {
                maxDiff = diff
                result = currentSymbol
            }

            index++
        }

        return result
    }
}

LeetCode Solution

Part 1 of 50

A collection of leetcode solustion

More from this blog

如何開始入門軟體工程領域 - 名詞解釋(長期更新)

現在應該開始有很多人想要踏入軟體工程的領域,但在進入這個領域之前,覺得先了解一些名詞,可以在入門時更有方向也更知道要用什麼關鍵字去找尋有用的資訊。這篇文章就是想要幫助想要入門的人理解一些軟體工程裡的專有名詞。 作業系統 這一區塊主要解釋跟作業系統層面相關的名詞 英文中文解釋 Operation system 簡稱 OS | 作業系統 | 就是電腦的作業系統,是三大作業系統分別是:Linux、Windows、macOS | | Linux | | 自由和開放原始碼的 UNI...

May 10, 2023

我的 MacBook Pro (Apple Silicon) 設定

現在開始因為 ChatGPT 的出現,各種 AI 助手的功能都跑出來了。想想自己用了許久的環境設定也應該要來重新審視和建立新的開發環境了,僅此紀錄我個人的環境配置步驟和設定。 環境前置步驟 還原 MacBook Pro 至全新環境 macOS(全部資料刪除) 設定好初始設定後,登入 Apple ID 進入 App Store 確定 macOS 版本和預設 APP 都更新到最新 macOS 版本 到系統設定調整所有設定至個人習慣的設定 三指拖移 觸控板手勢開啟 防火牆開啟 輸入法設定...

Apr 25, 2023

ChatGPT 下的發展預想

從 ChatGPT 問世到現在,有許許多多的文章和討論出來。先從最早的 Google 要完蛋了,到後來的工作要被取代了,工程師失業了。 我就比較沒有想要馬上出來評論一下,我喜歡讓子彈飛一會兒。跟討論一下我自己比較在意的討論點。 Google 為什麼慢了? 結論:因為他需要更小心 很多人說 Google 怎麼被微軟搶先了一步。剛開始 Bing 說要加上 AI 的時候大家都在說 Google 怎麼慢了。我就馬上跑去看 OpenAI 的網站,靠北呀啊就 Azure 贊助的。那當然在正式上線 ChatG...

Mar 23, 2023

不工程的攻城獅

223 posts

I am not a programmer because I am not good at programming. But I do programming. Love to learn new things. An animal lover and a dancer. My oshi is 潤羽るしあ.