Thursday, March 14, 2019

Lintcode 1070. Accounts Merge

Given a list accounts, 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 email that is common 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

Given
[
  ["John", "johnsmith@mail.com", "john00@mail.com"],
  ["John", "johnnybravo@mail.com"],
  ["John", "johnsmith@mail.com", "john_newyork@mail.com"],
  ["Mary", "mary@mail.com"]
]
Return
[
  ["John", 'john00@mail.com', 'john_newyork@mail.com', 'johnsmith@mail.com'],
  ["John", "johnnybravo@mail.com"],
  ["Mary", "mary@mail.com"]
]
Explanation:
The first and third John's are the same person as they have the common email "johnsmith@mail.com".
The second John and Mary are different people as none of their email addresses are used by other accounts.
You 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']
]
is also acceptable.

Notice

The length of accounts will be in the range [1, 1000].
The length of accounts[i] will be in the range [1, 10].
The length of accounts[i][j] will be in the range [1, 30].
Code (Java):
public class Solution {
    public List<List<String>> accountsMerge(List<List<String>> accounts) {
        List<List<String>> ans = new ArrayList<>();
        Map<String, String> parents = new HashMap<>();
        Map<String, String> owners = new HashMap<>();
        Map<String, TreeSet<String>> unions = new HashMap<>();

        // Init
        //
        for (List<String> account : accounts) {
            String name = account.get(0);
            for (int i = 1; i < account.size(); i++) {
                parents.put(account.get(i), account.get(i));
                owners.put(account.get(i), name);
            }
        }

        // Union-find
        //
        for (List<String> account : accounts) {
            String p1 = find(account.get(1), parents);
            for (int i = 2; i < account.size(); i++) {
                String p2 = find(account.get(i), parents);
                if (!p1.equals(p2)) {
                    parents.put(p2, p1);
                }
            }
        }

        // Construct results
        //
        for (List<String> account : accounts) {
            for (int i = 1; i < account.size(); i++) {
                String parent = find(account.get(i), parents);
                TreeSet<String> set = unions.getOrDefault(parent, new TreeSet<>());
                set.add(account.get(i));
                unions.put(parent, set);
            }
        }

        // construct final results
        //
        for (String key : unions.keySet()) {
            List<String> list = new ArrayList<>(unions.get(key));
            list.add(0, owners.get(key));
            ans.add(list);
        }

        return ans;
    }

    private  String find(String a, Map<String, String> parents) {
        String root = a;
        while (!parents.get(root).equals(root)) {
            root = parents.get(root);
        }

        // do i need to do  the path compression
        //
        while (!a.equals(root)) {
            String temp = parents.get(a);
            parents.put(a, root);
            a = temp;
        }

        return root;
    }
}

No comments:

Post a Comment