Problem Description
Given a list of accounts where each element accounts[i] is a list of strings, where the first element accounts[i][0] is a name, and the rest of the elements are emails representing emails of the account. We would like to merge these accounts. Two accounts definitely belong to the same person if there is some common email to both accounts. After merging the accounts, return the accounts in the format: the first element of each account is the name, and the rest of the elements are emails in sorted order. The accounts themselves can be returned in any order.
Key Insights
- Accounts with at least one common email should be merged.
- The emails must be sorted in the final output.
- The name associated with the emails is consistent for each person (but not necessarily unique across different people).
- We can represent the problem as a graph where emails are nodes and edges exist between emails belonging to the same account.
Space and Time Complexity
Time Complexity: O(N * E log E), where N is the number of accounts and E is the number of emails, due to the sorting step. Space Complexity: O(N + E), for storing the email-to-name mapping and the merged accounts.
Solution
To solve the problem, we can use the Union-Find (Disjoint Set Union) data structure to group emails that belong to the same account. The steps are as follows:
- Create a mapping from each email to its corresponding account name.
- Use Union-Find to connect emails that belong to the same account.
- After processing all accounts, iterate through the connected components to group emails.
- For each group of emails, sort them and prepend the account name to form the final merged accounts list.