Leetcode 2192. 有向无环图中一个节点的所有祖先 逆向建图+DFS

原题链接:Leetcode 2192. 有向无环图中一个节点的所有祖先
Leetcode 2192. 有向无环图中一个节点的所有祖先 逆向建图+DFS_第1张图片
Leetcode 2192. 有向无环图中一个节点的所有祖先 逆向建图+DFS_第2张图片
Leetcode 2192. 有向无环图中一个节点的所有祖先 逆向建图+DFS_第3张图片

class Solution {
public:
    vector<vector<int>> adj;
    vector<vector<int>> res;
    vector<int> indegree;
    map<pair<int,int>,int> mp;
    void dfs(int now)
    {
        for(auto x:adj[now])
        {
            if(!mp[{now,x}])
            {
                res[now].push_back(x);
                mp[{now,x}]=1;
            }
            if(res[x].size()==0) dfs(x);
            for(auto y:res[x])
            {
                if(!mp[{now,y}])
                {
                    res[now].push_back(y);
                    mp[{now,y}]=1;
                }
            }
        }
    }
    vector<vector<int>> getAncestors(int n, vector<vector<int>>& edges) {
        res.resize(n);
        adj.resize(n);
        indegree.resize(n);
        for(auto x:edges)
        {
            int a=x[0],b=x[1];
            adj[b].push_back(a);
            indegree[a]++;
        }
        for(int i=0;i<n;i++)
        {
            if(!indegree[i])   dfs(i);
        }
        for(int i=0;i<n;i++) sort(res[i].begin(),res[i].end());
        return res;
    }
};

你可能感兴趣的:(Leetcode,深度优先,leetcode,算法,图论,数据结构)