Difficulty: 🟡 Medium
You are given the logs for users' actions on LeetCode, and an integer k
. The logs are represented by a 2D integer array logs
where each logs[i] = [IDi, timei]
indicates that the user with IDi
performed an action at the minute timei
.
Multiple users can perform actions simultaneously, and a single user can perform multiple actions in the same minute.
The user active minutes (UAM) for a given user is defined as the number of unique minutes in which the user performed an action on LeetCode. A minute can only be counted once, even if multiple actions occur during it.
You are to calculate a 1-indexed array answer
of size k
such that, for each j
(1 <= j <= k
), answer[j]
is the number of users whose UAM equals j
.
Return the array answer
as described above.
Example 1:
Input: logs = [[0,5],[1,2],[0,2],[0,5],[1,3]], k = 5
Output: [0,2,0,0,0]
Explanation:
The user with ID=0 performed actions at minutes 5, 2, and 5 again. Hence, they have a UAM of 2 (minute 5 is only counted once).
The user with ID=1 performed actions at minutes 2 and 3. Hence, they have a UAM of 2.
Since both users have a UAM of 2, answer[2] is 2, and the remaining answer[j] values are 0.
Example 2:
Input: logs = [[1,1],[2,2],[2,3]], k = 4
Output: [1,1,0,0]
Explanation:
The user with ID=1 performed a single action at minute 1. Hence, they have a UAM of 1.
The user with ID=2 performed actions at minutes 2 and 3. Hence, they have a UAM of 2.
There is one user with a UAM of 1 and one with a UAM of 2.
Hence, answer[1] = 1, answer[2] = 1, and the remaining values are 0.
1 <= logs.length <= 104
0 <= IDi <= 109
1 <= timei <= 105
k
is in the range[The maximum **UAM** for a user, 105]
.
Python3
class Solution:
def findingUsersActiveMinutes(self, logs: List[List[int]], k: int) -> List[int]:
UAM = defaultdict(set)
for ID, time in logs:
UAM[ID].add(time)
unique_activity_to_users_count = defaultdict(int)
for key in UAM:
unique_activity_to_users_count[len(UAM[key])] += 1
answer = [0] * k
for j in range(k+1):
answer[j-1] = unique_activity_to_users_count[j]
return answer
The solution involves processing the logs to calculate the UAM for each user and then counting the number of users for each UAM value from 1 to k
.
Here's a step-by-step explanation of the solution:
-
Initialize a dictionary
UAM
(User Active Minutes) as a defaultdict of sets. This dictionary will store the unique minutes of activity for each user. -
Iterate through the logs. For each log entry
[ID, time]
, add thetime
to the set of active minutes for the user with IDID
in theUAM
dictionary. -
Initialize a dictionary
unique_activity_to_users_count
as a defaultdict of integers. This dictionary will store the count of users for each unique activity (UAM). -
Iterate through the keys in the
UAM
dictionary (which represent user IDs). For each user, calculate the length of their UAM set (i.e., the number of unique minutes of activity) and increment the corresponding count in theunique_activity_to_users_count
dictionary. -
Initialize an array
answer
of sizek
filled with zeros. -
Iterate from
j = 1
tok
, and for eachj
, assign the count of users with UAM equal toj
from theunique_activity_to_users_count
dictionary toanswer[j-1]
. -
Return the
answer
array as the result.
-
Time Complexity: The solution iterates through each log entry to build the
UAM
dictionary, iterates through the keys in theUAM
dictionary to build theunique_activity_to_users_count
dictionary, and iterates from 1 tok
to fill theanswer
array. The time complexity is O(N), where N is the number of log entries. -
Space Complexity: The space complexity is O(N) due to the
UAM
dictionary and theunique_activity_to_users_count
dictionary.
The solution efficiently calculates the UAM for each user from the given logs and counts the number of users for each UAM value. It uses dictionaries to store and process the data, resulting in a time complexity of O(N), where N is the number of log entries.
NB: If you want to get community points please suggest solutions in other languages as merge requests.