kyopro-lib

This documentation is automatically generated by online-judge-tools/verification-helper

View on GitHub

:x: test/aoj/GRL_3_C/main.test.cpp

Depends on

Code

#define PROBLEM "http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=GRL_3_C"

#include <iostream>
#include "Mylib/Graph/GraphUtils/strongly_connected_components.cpp"
#include "Mylib/Graph/Template/graph.cpp"
#include "Mylib/IO/input_tuples.cpp"

namespace hl = haar_lib;

int main() {
  int V, E;
  std::cin >> V >> E;

  hl::graph<int> g(V);
  g.read<0, true, false>(E);

  auto scc = hl::strongly_connected_components(g).first;

  int q;
  std::cin >> q;

  for (auto [u, v] : hl::input_tuples<int, int>(q)) {
    std::cout << (scc[u] == scc[v]) << std::endl;
  }

  return 0;
}
#line 1 "test/aoj/GRL_3_C/main.test.cpp"
#define PROBLEM "http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=GRL_3_C"

#include <iostream>
#line 2 "Mylib/Graph/GraphUtils/strongly_connected_components.cpp"
#include <algorithm>
#include <vector>
#line 4 "Mylib/Graph/Template/graph.cpp"

namespace haar_lib {
  template <typename T>
  struct edge {
    int from, to;
    T cost;
    int index = -1;
    edge() {}
    edge(int from, int to, T cost) : from(from), to(to), cost(cost) {}
    edge(int from, int to, T cost, int index) : from(from), to(to), cost(cost), index(index) {}
  };

  template <typename T>
  struct graph {
    using weight_type = T;
    using edge_type   = edge<T>;

    std::vector<std::vector<edge<T>>> data;

    auto& operator[](size_t i) { return data[i]; }
    const auto& operator[](size_t i) const { return data[i]; }

    auto begin() const { return data.begin(); }
    auto end() const { return data.end(); }

    graph() {}
    graph(int N) : data(N) {}

    bool empty() const { return data.empty(); }
    int size() const { return data.size(); }

    void add_edge(int i, int j, T w, int index = -1) {
      data[i].emplace_back(i, j, w, index);
    }

    void add_undirected(int i, int j, T w, int index = -1) {
      add_edge(i, j, w, index);
      add_edge(j, i, w, index);
    }

    template <size_t I, bool DIRECTED = true, bool WEIGHTED = true>
    void read(int M) {
      for (int i = 0; i < M; ++i) {
        int u, v;
        std::cin >> u >> v;
        u -= I;
        v -= I;
        T w = 1;
        if (WEIGHTED) std::cin >> w;
        if (DIRECTED)
          add_edge(u, v, w, i);
        else
          add_undirected(u, v, w, i);
      }
    }
  };

  template <typename T>
  using tree = graph<T>;
}  // namespace haar_lib
#line 5 "Mylib/Graph/GraphUtils/strongly_connected_components.cpp"

namespace haar_lib {
  template <typename T>
  auto strongly_connected_components(const graph<T> &g) {
    const int n = g.size();

    std::vector<int> ret(n), low(n, -1), ord(n, -1), S;
    std::vector<bool> check(n);
    S.reserve(n);
    int t = 0;
    int k = 0;

    auto dfs =
        [&](auto &dfs, int cur) -> void {
      low[cur] = ord[cur] = t++;
      S.push_back(cur);
      check[cur] = true;

      for (auto &e : g[cur]) {
        if (ord[e.to] == -1) {
          dfs(dfs, e.to);
          low[cur] = std::min(low[cur], low[e.to]);
        } else if (check[e.to]) {
          low[cur] = std::min(low[cur], low[e.to]);
        }
      }

      if (low[cur] == ord[cur]) {
        while (true) {
          int u = S.back();
          S.pop_back();
          check[u] = false;
          ret[u]   = k;
          if (cur == u) break;
        }
        ++k;
      }
    };

    for (int i = 0; i < n; ++i) {
      if (ord[i] == -1) {
        t = 0;
        dfs(dfs, i);
      }
    }

    for (auto &x : ret) x = k - 1 - x;

    return std::make_pair(ret, k);
  }
}  // namespace haar_lib
#line 2 "Mylib/IO/input_tuples.cpp"
#include <initializer_list>
#line 4 "Mylib/IO/input_tuples.cpp"
#include <tuple>
#include <utility>
#line 6 "Mylib/IO/input_tuple.cpp"

namespace haar_lib {
  template <typename T, size_t... I>
  static void input_tuple_helper(std::istream &s, T &val, std::index_sequence<I...>) {
    (void) std::initializer_list<int>{(void(s >> std::get<I>(val)), 0)...};
  }

  template <typename T, typename U>
  std::istream &operator>>(std::istream &s, std::pair<T, U> &value) {
    s >> value.first >> value.second;
    return s;
  }

  template <typename... Args>
  std::istream &operator>>(std::istream &s, std::tuple<Args...> &value) {
    input_tuple_helper(s, value, std::make_index_sequence<sizeof...(Args)>());
    return s;
  }
}  // namespace haar_lib
#line 8 "Mylib/IO/input_tuples.cpp"

namespace haar_lib {
  template <typename... Args>
  class InputTuples {
    struct iter {
      using value_type = std::tuple<Args...>;
      value_type value;
      bool fetched = false;
      int N, c = 0;

      value_type operator*() {
        if (not fetched) {
          std::cin >> value;
        }
        return value;
      }

      void operator++() {
        ++c;
        fetched = false;
      }

      bool operator!=(iter &) const {
        return c < N;
      }

      iter(int N) : N(N) {}
    };

    int N;

  public:
    InputTuples(int N) : N(N) {}

    iter begin() const { return iter(N); }
    iter end() const { return iter(N); }
  };

  template <typename... Args>
  auto input_tuples(int N) {
    return InputTuples<Args...>(N);
  }
}  // namespace haar_lib
#line 7 "test/aoj/GRL_3_C/main.test.cpp"

namespace hl = haar_lib;

int main() {
  int V, E;
  std::cin >> V >> E;

  hl::graph<int> g(V);
  g.read<0, true, false>(E);

  auto scc = hl::strongly_connected_components(g).first;

  int q;
  std::cin >> q;

  for (auto [u, v] : hl::input_tuples<int, int>(q)) {
    std::cout << (scc[u] == scc[v]) << std::endl;
  }

  return 0;
}
Back to top page