All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0801_0900.s0802_find_eventual_safe_states.Solution Maven / Gradle / Ivy

There is a newer version: 1.35
Show newest version
package g0801_0900.s0802_find_eventual_safe_states;

// #Medium #Depth_First_Search #Breadth_First_Search #Graph #Topological_Sort
// #Graph_Theory_I_Day_9_Standard_Traversal #2022_03_23_Time_7_ms_(74.93%)_Space_71.1_MB_(44.58%)

import java.util.ArrayList;
import java.util.List;

public class Solution {
    public List eventualSafeNodes(int[][] graph) {
        List res = new ArrayList<>();
        int[] vis = new int[graph.length];
        for (int i = 0; i < graph.length; i++) {
            if (dfs(graph, i, vis)) {
                res.add(i);
            }
        }
        return res;
    }

    private boolean dfs(int[][] graph, int src, int[] vis) {
        if (vis[src] != 0) {
            return vis[src] == 2;
        }
        vis[src] = 1;
        for (int x : graph[src]) {
            if (!dfs(graph, x, vis)) {
                return false;
            }
        }
        vis[src] = 2;
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy