cp-library

C++ Library for Competitive Programming

View the Project on GitHub emthrm/cp-library

:heavy_check_mark: 有向閉路 (directed cycle) の検出
(include/emthrm/graph/detect_directed_cycle.hpp)

歩道 (walk) の検出

時間計算量

$O(\lvert V \rvert + \lvert E \rvert)$

仕様

道の検出

名前 戻り値
template <typename CostType>
std::vector<Edge<CostType>> detect_path(const std::vector<std::vector<Edge<CostType>>>& graph, const int s, const int t);
有向グラフ $\mathrm{graph}$ における始点 $s$、終点 $t$ の道。ただし存在しないときは空配列を返す。

有向閉路の検出

名前 戻り値
template <typename CostType>
std::vector<Edge<CostType>> detect_directed_cycle(const std::vector<std::vector<Edge<CostType>>>& graph);
有向グラフ $\mathrm{graph}$ における閉路。ただし存在しないときは空配列を返す。

参考文献

有向閉路の検出

TODO

Submissons

Depends on

Verified with

Code

#ifndef EMTHRM_GRAPH_DETECT_DIRECTED_CYCLE_HPP_
#define EMTHRM_GRAPH_DETECT_DIRECTED_CYCLE_HPP_

#include <algorithm>
#include <vector>

#include "emthrm/graph/edge.hpp"

namespace emthrm {

template <typename CostType>
std::vector<Edge<CostType>> detect_directed_cycle(
    const std::vector<std::vector<Edge<CostType>>>& graph) {
  const int n = graph.size();
  std::vector<int> is_visited(n, 0);
  std::vector<Edge<CostType>> edges, cycle;
  const auto dfs = [&graph, &is_visited, &edges, &cycle](
      auto dfs, const int ver) -> bool {
    is_visited[ver] = 1;
    for (const Edge<CostType>& e : graph[ver]) {
      if (is_visited[e.dst] == 1) {
        cycle.emplace_back(e);
        while (cycle.back().src != e.dst) {
          cycle.emplace_back(edges.back());
          edges.pop_back();
        }
        std::reverse(cycle.begin(), cycle.end());
        return true;
      } else if (is_visited[e.dst] == 0) {
        edges.emplace_back(e);
        if (dfs(dfs, e.dst)) return true;
        edges.pop_back();
      }
    }
    is_visited[ver] = 2;
    return false;
  };
  for (int i = 0; i < n; ++i) {
    if (is_visited[i] == 0 && dfs(dfs, i)) break;
  }
  return cycle;
}

}  // namespace emthrm

#endif  // EMTHRM_GRAPH_DETECT_DIRECTED_CYCLE_HPP_
#line 1 "include/emthrm/graph/detect_directed_cycle.hpp"



#include <algorithm>
#include <vector>

#line 1 "include/emthrm/graph/edge.hpp"
/**
 * @title 辺
 */

#ifndef EMTHRM_GRAPH_EDGE_HPP_
#define EMTHRM_GRAPH_EDGE_HPP_

#include <compare>

namespace emthrm {

template <typename CostType>
struct Edge {
  CostType cost;
  int src, dst;

  explicit Edge(const int src, const int dst, const CostType cost = 0)
      : cost(cost), src(src), dst(dst) {}

  auto operator<=>(const Edge& x) const = default;
};

}  // namespace emthrm

#endif  // EMTHRM_GRAPH_EDGE_HPP_
#line 8 "include/emthrm/graph/detect_directed_cycle.hpp"

namespace emthrm {

template <typename CostType>
std::vector<Edge<CostType>> detect_directed_cycle(
    const std::vector<std::vector<Edge<CostType>>>& graph) {
  const int n = graph.size();
  std::vector<int> is_visited(n, 0);
  std::vector<Edge<CostType>> edges, cycle;
  const auto dfs = [&graph, &is_visited, &edges, &cycle](
      auto dfs, const int ver) -> bool {
    is_visited[ver] = 1;
    for (const Edge<CostType>& e : graph[ver]) {
      if (is_visited[e.dst] == 1) {
        cycle.emplace_back(e);
        while (cycle.back().src != e.dst) {
          cycle.emplace_back(edges.back());
          edges.pop_back();
        }
        std::reverse(cycle.begin(), cycle.end());
        return true;
      } else if (is_visited[e.dst] == 0) {
        edges.emplace_back(e);
        if (dfs(dfs, e.dst)) return true;
        edges.pop_back();
      }
    }
    is_visited[ver] = 2;
    return false;
  };
  for (int i = 0; i < n; ++i) {
    if (is_visited[i] == 0 && dfs(dfs, i)) break;
  }
  return cycle;
}

}  // namespace emthrm
Back to top page