图论27(Leetcode721账户合并)

代码:

写了一个超时版本 又学了并查集

超时版本:

java 复制代码
class Solution {
    public List<List<String>> accountsMerge(List<List<String>> accounts) {
        List<List<String>> newAcc = new ArrayList<>();
        Set<Integer> isArrive = new HashSet<>();
        int idx = 0;
        
        Iterator<List<String>> iterator = accounts.iterator();
        while(iterator.hasNext()){
            List<String> curAcc = iterator.next();
            if(isArrive.contains(idx)){
                idx++;
                continue;
            }
            Set<Integer> set = new HashSet<>();
            set.add(idx);
            set = getIdx(idx,set,accounts);
            List<String> curEmail = new ArrayList<>();
            for(int i:set){
                for(String str:accounts.get(i)){
                    if(!curEmail.contains(str))curEmail.add(str);
                }
            }
            if(!isArrive.contains(idx)){
                String name = curEmail.get(0);
                curEmail.remove(0);
                Collections.sort(curEmail); 
                curEmail.add(0,name);
                newAcc.add(curEmail);
                isArrive.add(idx);
                for(int i:set){
                    isArrive.add(i);
                }
            }
            idx++;
        }        
        return newAcc;

    }
    public Set<Integer> getIdx(int curIdx, Set<Integer> set, List<List<String>> accounts){
        List<String> curAccount = accounts.get(curIdx);
        // curAccount.remove(0);
        for(String email:curAccount){
            for(int i=0;i<accounts.size();i++){
                if(set.contains(i))continue;
                List<String> acc = accounts.get(i);
                if(acc.contains(email)&&email.contains("@")){
                    set.add(i);
                    set = getIdx(i,set,accounts);
                }
            }
        }
        return set;
    }
}

并查集版:

java 复制代码
class Solution {
    public List<List<String>> accountsMerge(List<List<String>> accounts) {
        Map<String,Integer> emailToIndex = new HashMap<String,Integer>();
        Map<String,String> emailToName = new HashMap<String,String>();
        int emailsCount = 0;
        for(List<String>account:accounts){//遍历 写email的序号 和 email的name对
            String name = account.get(0);
            int size = account.size();
            for(int i=1;i<size;i++){
                String email = account.get(i);
                if(!emailToIndex.containsKey(email)){
                    emailToIndex.put(email,emailsCount++);
                    emailToName.put(email,name);
                }
            }
        }

        UnionFind uf = new UnionFind(emailsCount);
        for(List<String> account:accounts){ //把同一个人的邮箱合并到一个父节点下
            String firstEmail = account.get(1);
            int firstIndex = emailToIndex.get(firstEmail);
            int size = account.size();
            for(int i=2;i<size;i++){
                String nextEmail = account.get(i);
                int nextIndex = emailToIndex.get(nextEmail);
                uf.union(firstIndex,nextIndex);
            }
        }

        Map<Integer,List<String>> indexToEmails = new HashMap<Integer,List<String>>();
        for(String email:emailToIndex.keySet()){//把相同根节点的email放一起
            int index = uf.find(emailToIndex.get(email));
            List<String> account = indexToEmails.getOrDefault(index, new ArrayList<String>());
            account.add(email);
            indexToEmails.put(index, account);
        }

        List<List<String>> merged = new ArrayList<List<String>>();
        for(List<String> emails:indexToEmails.values()){
            Collections.sort(emails);
            String name = emailToName.get(emails.get(0));
            List<String> account = new ArrayList<>();
            account.add(name);
            account.addAll(emails);
            merged.add(account);
        }
        return merged;
    }
}
class UnionFind{
    int[] parent;
    public UnionFind(int n){
        parent = new int[n];
        for(int i=0;i<n;i++){
            parent[i]=i;
        }
    }
    public void union(int index1,int index2){
        parent[find(index2)] = find(index1);
    }

    public int find(int index){
        if(parent[index]!=index){
            parent[index] = find(parent[index]);
        }
        return parent[index];
    }
}
相关推荐
灰灰学姐17 小时前
Floyd算法——有向图
数据结构·算法·图论
Rachela_z17 小时前
代码随想录算法训练营第五十七天| 图论03
算法·图论
kill bert1 天前
代码随想录第五十天| 图论理论基础
java·算法·动态规划·图论
Emplace2 天前
ABC394F题解
图论
adam_life2 天前
【http://noi.openjudge.cn/】4.3算法之图论——1538:Gopher II
算法·图论·二分图·匈牙利算法·深搜
银河梦想家2 天前
【Day53 LeetCode】图论问题
算法·leetcode·图论
Ritsu栗子2 天前
代码随想录算法训练day67---图论系列11《Floyd 算法&A*算法》
c++·算法·图论
圆圆滚滚小企鹅。2 天前
刷题记录 HOT100 图论-3:207. 课程表
笔记·python·算法·leetcode·深度优先·图论·广度优先
-Michelangelo-2 天前
《代码随想录第五十五天》——图论基础、深度搜索理论基础、所有可达路径、广度搜索理论基础
图论
bee-y2 天前
力扣hot100——图论
leetcode·深度优先·图论