-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlongest_cycle.cpp
63 lines (55 loc) · 1.43 KB
/
longest_cycle.cpp
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
/*
Problem Link: https://leetcode.com/problems/longest-cycle-in-a-graph/
Editorial: https://leetcode.com/problems/longest-cycle-in-a-graph/solution/
*/
#include <bits/stdc++.h>
using namespace std;
class Solution {
public:
int longestCycle(vector<int>& edges) {
int n = edges.size();
vector<bool> vis(n);
vector<int> indegree(n);
for(int edge: edges)
{
if(edge != -1)
indegree[edge]++;
}
queue<int> q;
for(int i = 0; i < n; i++)
if(indegree[i] == 0)
q.push(i);
while(!q.empty())
{
int node = q.front();
q.pop();
vis[node] = true;
int it = edges[node];
if(it != -1)
{
indegree[it]--;
if(indegree[it] == 0)
q.push(it);
}
}
int ans = -1;
for(int i = 0; i < n; i++)
{
if(!vis[i])
{
int it = edges[i];
int cnt = 1;
vis[it] = true;
//iterate in cycle
while(it != i)
{
vis[it] = true;
cnt++;
it = edges[it];
}
ans = max(cnt, ans);
}
}
return ans;
}
};