summaryrefslogtreecommitdiff
path: root/src/main/StronglyConnected.java
blob: adc045b39f185f9742a3e9a47bf21e841cb1e796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
import java.util.stream.IntStream;

public class StronglyConnected {
    private static int numberOfStronglyConnectedComponents(ArrayList<Integer>[] adj) {
        ArrayList<Integer>[] adjReversa1 = reverseG(adj);
        boolean[] adjReversalVisited = new boolean[adj.length];
        int[] postV = new int[adj.length];
        int[] clock = new int[1];
        dfs(adjReversa1, adjReversalVisited, postV, clock);

        // https://stackoverflow.com/questions/951848/java-array-sort-quick-way-to-get-a-sorted-list-of-indices-of-an-array/35701049
        int[] temp = IntStream.range(0, postV.length).boxed().sorted((i, j) -> postV[i] - postV[j]).mapToInt(ele -> ele).toArray();

        boolean[] visited = new boolean[adj.length];
        int sccCount = 0;


        for (int i = adj.length - 1; i > -1; i--) {
            if (!visited[temp[i]]) {
                exploreWithoutPostV(temp[i], adj, visited);
                sccCount++;
            }
        }
        return sccCount;
    }

    private static void dfs(ArrayList<Integer>[] adj, boolean[] visited, int[] postV, int[] clock) {
        for (int v = 0; v < adj.length; v++) {
            if (!visited[v])
                explore(v, adj, visited, postV, clock);
        }
    }

    private static void explore(int v, ArrayList<Integer>[] adj, boolean[] visited, int[] postV, int[] clock) {
        visited[v] = true;
        for (int w : adj[v]) {
            if (!visited[w])
                explore(w, adj, visited, postV, clock);
        }
        postV[v] = clock[0];
        clock[0] = clock[0] + 1;
    }

    private static void exploreWithoutPostV(int v, ArrayList<Integer>[] adj, boolean[] visited) {
        visited[v] = true;
        for (int w : adj[v]) {
            if (!visited[w])
                exploreWithoutPostV(w, adj, visited );
        }
    }


    private static ArrayList<Integer>[] reverseG(ArrayList<Integer>[] adj) {
        ArrayList<Integer>[] adjReverse = (ArrayList<Integer>[])new ArrayList[adj.length];
        for (int i = 0; i < adj.length; i++) {
            adjReverse[i] = new ArrayList<Integer>();
        }

        for (int v = 0; v < adj.length; v++) {
            for (int w : adj[v]) {
                adjReverse[w].add(v);
            }
        }
        return adjReverse;
    }

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt();
        int m = scanner.nextInt();
        ArrayList<Integer>[] adj = (ArrayList<Integer>[])new ArrayList[n];
        for (int i = 0; i < n; i++) {
            adj[i] = new ArrayList<Integer>();
        }
        for (int i = 0; i < m; i++) {
            int x, y;
            x = scanner.nextInt();
            y = scanner.nextInt();
            adj[x - 1].add(y - 1);
        }
        System.out.println(numberOfStronglyConnectedComponents(adj));
    }
}