1629. Slowest Key LeetCode Solution

In this guide, you will get 1629. Slowest Key LeetCode Solution with the best time and space complexity. The solution to Slowest Key problem is provided in various programming languages like C++, Java, and Python. This will be helpful for you if you are preparing for placements, hackathons, interviews, or practice purposes. The solutions provided here are very easy to follow and include detailed explanations.

Table of Contents

  1. Problem Statement
  2. Complexity Analysis
  3. Slowest Key solution in C++
  4. Slowest Key solution in Java
  5. Slowest Key solution in Python
  6. Additional Resources
1629. Slowest Key LeetCode Solution image

Problem Statement of 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.

See also  920. Number of Music Playlists LeetCode Solution

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.

Complexity Analysis

  • Time Complexity: O(n)
  • Space Complexity: O(1)

1629. Slowest Key LeetCode Solution in C++

class Solution {
 public:
  char slowestKey(vector<int>& releaseTimes, string keysPressed) {
    char ans = keysPressed[0];
    int maxDuration = releaseTimes[0];

    for (int i = 1; i < keysPressed.length(); ++i) {
      const int duration = releaseTimes[i] - releaseTimes[i - 1];
      if (duration > maxDuration ||
          (duration == maxDuration && keysPressed[i] > ans)) {
        ans = keysPressed[i];
        maxDuration = duration;
      }
    }

    return ans;
  }
};
/* code provided by PROGIEZ */

1629. Slowest Key LeetCode Solution in Java

class Solution {
  public char slowestKey(int[] releaseTimes, String keysPressed) {
    char ans = keysPressed.charAt(0);
    int maxDuration = releaseTimes[0];

    for (int i = 1; i < keysPressed.length(); ++i) {
      final int duration = releaseTimes[i] - releaseTimes[i - 1];
      if (duration > maxDuration || (duration == maxDuration && keysPressed.charAt(i) > ans)) {
        ans = keysPressed.charAt(i);
        maxDuration = duration;
      }
    }

    return ans;
  }
}
// code provided by PROGIEZ

1629. Slowest Key LeetCode Solution in Python

class Solution:
  def slowestKey(self, releaseTimes: list[int], keysPressed: str) -> str:
    ans = keysPressed[0]
    maxDuration = releaseTimes[0]

    for i in range(1, len(keysPressed)):
      duration = releaseTimes[i] - releaseTimes[i-1]
      if duration > maxDuration or (
              duration == maxDuration and keysPressed[i] > ans):
        ans = keysPressed[i]
        maxDuration = duration

    return ans
# code by PROGIEZ

Additional Resources

See also  3319. K-th Largest Perfect Subtree Size in Binary Tree LeetCode Solution

Happy Coding! Keep following PROGIEZ for more updates and solutions.