(int u, int v)
| 55 | public static int[] ansArr = new int[MAXM]; |
| 56 | |
| 57 | public static void addEdge(int u, int v) { |
| 58 | nxt[++cntg] = head[u]; |
| 59 | to[cntg] = v; |
| 60 | head[u] = cntg; |
| 61 | } |
| 62 | |
| 63 | public static void tarjan(int u) { |
| 64 | dfn[u] = low[u] = ++cntd; |
no outgoing calls
no test coverage detected