# 721 Accounts Merge

## 721. [Accounts Merge](https://leetcode.com/problems/accounts-merge/description/)

## 1. Question

Given a list`accounts`, each element`accounts[i]`is a list of strings, where the first element`accounts[i][0]`is aname, and the rest of the elements areemailsrepresenting 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 1:**

```
Input:

accounts = [["John", "johnsmith@mail.com", "john00@mail.com"], ["John", "johnnybravo@mail.com"], ["John", "johnsmith@mail.com", "john_newyork@mail.com"], ["Mary", "mary@mail.com"]]

Output:
 [["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.
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.
```

**Note:**

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]`.

## 2. Implementation

**(1) DFS**

```java
class Solution {
    public List<List<String>> accountsMerge(List<List<String>> accounts) {
        List<List<String>> res = new ArrayList<>();

        if (accounts == null || accounts.size() == 0) {
            return res;
        }

        Map<String, String> emailToName = new HashMap<>();
        Map<String, Set<String>> graph = new HashMap<>();
        Set<String> emails = new HashSet<>();

        for (List<String> account : accounts) {
            String name = account.get(0);

            for (int i = 1; i < account.size(); i++) {
                String email = account.get(i);

                emails.add(email);
                emailToName.put(email, name);
                graph.putIfAbsent(email, new HashSet<>());

                // Build edge
                if (i != 1) {
                    graph.get(account.get(i - 1)).add(email);
                    graph.get(email).add(account.get(i - 1));
                }
            }
        }

        Set<String> visited = new HashSet<>();

        for (String email : emails) {
            if (!visited.contains(email)) {
                visited.add(email);
                List<String>  buffer = new ArrayList<>();
                buffer.add(email);
                findConnectedComponentByDFS(email, graph, visited, buffer);
                Collections.sort(buffer);
                buffer.add(0, emailToName.get(email));
                res.add(buffer);
            }
        }
        return res;
    }

    public void findConnectedComponentByDFS(String email, Map<String, Set<String>> graph, Set<String> visited, List<String> buffer) {
        for (String nextEmail : graph.get(email)) {
            if (!visited.contains(nextEmail)) {
                visited.add(nextEmail);
                buffer.add(nextEmail);
                findConnectedComponentByDFS(nextEmail, graph, visited, buffer);
            }
        }
    }
}
```

## 3. Time & Space Complexity

DFS: 时间复杂度O(k \* nlogn) ,n是输入的每个email list平均长度, k是email list的个数, 空间复杂度O(nk)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://protegejj.gitbook.io/algorithm-practice/leetcode/graph/721-accounts-merge.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
