2360. Longest Cycle in a Graph

给定一个有向图,每个节点最多有一个出边。返回图中最长循环的长度,若无循环则返回-1。通过 BFS 更新节点的父节点及距离,当发现环路时,计算环路长度并更新答案。
摘要由CSDN通过智能技术生成

You are given a directed graph of n nodes numbered from 0 to n - 1, where each node has at most one outgoing edge.

The graph is represented with a given 0-indexed array edges of size n, indicating that there is a directed edge from node i to node edges[i]. If there is no outgoing edge from node i, then edges[i] == -1.

Return the length of the longest cycle in the graph. If no cycle exists, return -1.

A cycle is a path that starts and ends at the same node.

Example 1:

Input: edges = [3,3,4,2,3]
Output: 3

Explanation: The longest cycle in the graph is the cycle: 2 -> 4 -> 3 -> 2.
The length of this cycle is 3, so 3 is returned.

Example 2:

Input: edges = [2,-1,3,1]
Output: -1

Explanation: There are no cycles in this graph.

Constraints:

  • n == edges.length
  • 2 <= n <= 105
  • -1 <= edges[i] < n
  • edges[i] != i

每一个 node 可能有多个 from, 但是 to 只有一个, 所以我们将每个 node 的 to 收集起来作为当前 node 的 parents, 同时记录下 node[i]与 parents[i]的距离, 我们 bfs 更新 parents, 假设 parents[i] = (parent, parent_distance), parents[parent] = (parent_of_parent, parent_of_parent_distance), 那我们就可以更新 parents[i] = (parent_of_parent, parent_distance + parent_of_parent_distance), 但是要注意, 如果 parent == parent_of_parent 则证明 parents[parent]已经形

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值