Problem Description
You are given a 2D 0-indexed array of strings, access_times, with size n. For each i where 0 <= i <= n - 1, access_times[i][0] represents the name of an employee, and access_times[i][1] represents the access time of that employee. An employee is said to be high-access if he has accessed the system three or more times within a one-hour period. Return a list that contains the names of high-access employees with any order you want.
Key Insights
- Each access time is a four-digit number in 24-hour format.
- An employee must have three or more access times within a one-hour window (not including the edges).
- Sorting access times for each employee allows for efficient checking of the number of accesses within any one-hour period.
- Use a dictionary to group access times by employee names.
Space and Time Complexity
Time Complexity: O(n log n) for sorting the access times, where n is the total number of access records. Each employee's access list is processed in linear time.
Space Complexity: O(n) for storing the access times of each employee.
Solution
To solve the problem, we will:
- Use a dictionary to group access times by employee names.
- Sort the access times for each employee.
- For each employee, iterate through the sorted times and count how many access times fall within any one-hour period.
- If an employee meets the high-access criteria (three or more accesses in an hour), add their name to the result list.