DEV Community

Wenqi Jiang
Wenqi Jiang

Posted on

721. Accounts Merge

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.

Now, we would like to merge these accounts. Two accounts definitely belong to the same person if there is some common email to both accounts. Note that even if two accounts have the same name, they may belong to different people as people could have the same name. A person can have any number of accounts initially, but all of their accounts definitely have the same name.

After merging the accounts, return the accounts in the following 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.

Example 1:

Input: accounts = [["John","johnsmith@mail.com","john_newyork@mail.com"],["John","johnsmith@mail.com","john00@mail.com"],["Mary","mary@mail.com"],["John","johnnybravo@mail.com"]]
Output: [["John","john00@mail.com","john_newyork@mail.com","johnsmith@mail.com"],["Mary","mary@mail.com"],["John","johnnybravo@mail.com"]]
Explanation:
The first and second John's are the same person as they have the common email "johnsmith@mail.com".
The third John and Mary are different people as none of their email addresses are used by other accounts.
We could return these lists in any order, for example the answer [['Mary', 'mary@mail.com'], ['John', 'johnnybravo@mail.com'], 
['John', 'john00@mail.com', 'john_newyork@mail.com', 'johnsmith@mail.com']] would still be accepted.
Enter fullscreen mode Exit fullscreen mode

Example 2:

Input: accounts = [["Gabe","Gabe0@m.co","Gabe3@m.co","Gabe1@m.co"],["Kevin","Kevin3@m.co","Kevin5@m.co","Kevin0@m.co"],["Ethan","Ethan5@m.co","Ethan4@m.co","Ethan0@m.co"],["Hanzo","Hanzo3@m.co","Hanzo1@m.co","Hanzo0@m.co"],["Fern","Fern5@m.co","Fern1@m.co","Fern0@m.co"]]
Output: [["Ethan","Ethan0@m.co","Ethan4@m.co","Ethan5@m.co"],["Gabe","Gabe0@m.co","Gabe1@m.co","Gabe3@m.co"],["Hanzo","Hanzo0@m.co","Hanzo1@m.co","Hanzo3@m.co"],["Kevin","Kevin0@m.co","Kevin3@m.co","Kevin5@m.co"],["Fern","Fern0@m.co","Fern1@m.co","Fern5@m.co"]]
Enter fullscreen mode Exit fullscreen mode

Constraints:

  • 1 <= accounts.length <= 1000
  • 2 <= accounts[i].length <= 10
  • 1 <= accounts[i][j] <= 30
  • accounts[i][0] consists of English letters.
  • accounts[i][j] (for j > 0) is a valid email.

Solutions

Solution 1

Intuition

Union find

Code

class Solution {

    private class UnionFind {
        int[] p;

        public UnionFind(int n) {
            p = new int[n];
            for (int i = 0; i < n; i++) {
                p[i] = i;
            }
        }

        public int find(int x) {
            if (p[x] != x) {
                p[x] = find(p[x]);
            }
            return p[x];
        }

        public void union(int a, int b) {
            p[find(a)] = find(b);
        }
    }

    public List<List<String>> accountsMerge(List<List<String>> accounts) {
        int n = accounts.size();
        UnionFind uf = new UnionFind(n);

        Map<String, Integer> emailWithOwnerIndex = new HashMap<>();

        for (int index = 0; index < n; index++) {
            List<String> account = accounts.get(index);
            String name = account.get(0);
            for (int i = 1; i < account.size(); i++) {
                String email = account.get(i);
                if (emailWithOwnerIndex.containsKey(email)) {
                    uf.union(index, emailWithOwnerIndex.get(email));
                } else {
                    emailWithOwnerIndex.put(email, index);
                }
            }
        }

        Map<Integer, List<String>> ownerIndexWithEmails = new HashMap<>();
        for (String email : emailWithOwnerIndex.keySet()) {
            int ownerIndex = uf.find(emailWithOwnerIndex.get(email));
            List<String> emails = ownerIndexWithEmails.getOrDefault(uf.find(ownerIndex), new ArrayList<String>());
            emails.add(email);
            ownerIndexWithEmails.put(ownerIndex, emails);
        }

        List<List<String>> ans = new ArrayList<>();
        for (int index : ownerIndexWithEmails.keySet()) {
            List<String> emails = ownerIndexWithEmails.get(index);
            Collections.sort(emails);
            emails.add(0, accounts.get(index).get(0));
            ans.add(emails);
        }
        return ans;
    }
}
Enter fullscreen mode Exit fullscreen mode
const int N = 1001;
class Solution {
private:
    int p[N];

    int find(int x) {
        if (p[x] != x) p[x] = find(p[x]);
        return p[x];
    }

public:
    vector<vector<string>> accountsMerge(vector<vector<string>>& accounts) {
        int n = accounts.size();
        for (int i = 0; i < n; i++) p[i] = i;

        // email -> user indexes
        unordered_map<string, vector<int>> hash;
        for (int i = 0; i < n; i++) {
            for (int j = 1; j < accounts[i].size(); j++) {
                hash[accounts[i][j]].push_back(i);
            }
        }
        // union account indexes
        for (auto& [email, accountIndexes] : hash) {
            for (int i = 1; i < accountIndexes.size(); i++) {
                p[find(accountIndexes[i])] = p[find(accountIndexes[0])];
            }
        }
        // sorting the emails for each account
        vector<set<string>> emails(n);
        for (int i = 0; i < n; i++) {
            for (int j = 1; j < accounts[i].size(); j++) {
                emails[find(i)].insert(accounts[i][j]);
            }
        }

        vector<vector<string>> res;
        for (int i = 0; i < n; i++) {
            if (!emails[i].empty()) {
                vector<string> account;
                account.push_back(accounts[i][0]);
                for (auto& email : emails[i]) account.push_back(email);
                res.push_back(account);
            }
        }
        return res;

    }
};
Enter fullscreen mode Exit fullscreen mode

Complexity

  • Time: O(nlogn)
  • Space: O(n)

Top comments (0)