kyopro-lib

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

View on GitHub

:x: test/aoj/GRL_1_B/main.spfa.test.cpp

Depends on

Code

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

#include <iostream>
#include "Mylib/Graph/ShortestPath/spfa.cpp"
#include "Mylib/Graph/Template/graph.cpp"

namespace hl = haar_lib;

int main() {
  std::cin.tie(0);
  std::ios::sync_with_stdio(false);

  int V, E, r;
  std::cin >> V >> E >> r;

  hl::graph<int64_t> g(V);
  g.read<0>(E);

  auto res = hl::spfa(g, r);

  if (res) {
    for (auto &x : res.value()) {
      if (x)
        std::cout << x.value() << "\n";
      else
        std::cout << "INF\n";
    }
  } else {
    std::cout << "NEGATIVE CYCLE\n";
  }

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

#include <iostream>
#line 2 "Mylib/Graph/ShortestPath/spfa.cpp"
#include <optional>
#include <queue>
#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 6 "Mylib/Graph/ShortestPath/spfa.cpp"

namespace haar_lib {
  template <typename T>
  std::optional<std::vector<std::optional<T>>> spfa(const graph<T> &g, int src) {
    const int N = g.size();

    std::vector<std::optional<T>> dist(N);
    std::vector<bool> check(N);
    std::vector<int> count(N);
    std::queue<int> q;

    q.push(src);
    dist[src]  = 0;
    check[src] = true;
    count[src] = 1;

    while (not q.empty()) {
      auto cur = q.front();
      q.pop();
      check[cur] = false;

      for (auto &e : g[cur]) {
        if (not dist[e.to] or dist[cur].value() + e.cost < dist[e.to].value()) {
          dist[e.to] = dist[cur].value() + e.cost;
          if (not check[e.to]) {
            count[e.to] += 1;
            if (count[e.to] >= N) return std::nullopt;
            q.push(e.to);
          }
        }
      }
    }

    return dist;
  };
}  // namespace haar_lib
#line 6 "test/aoj/GRL_1_B/main.spfa.test.cpp"

namespace hl = haar_lib;

int main() {
  std::cin.tie(0);
  std::ios::sync_with_stdio(false);

  int V, E, r;
  std::cin >> V >> E >> r;

  hl::graph<int64_t> g(V);
  g.read<0>(E);

  auto res = hl::spfa(g, r);

  if (res) {
    for (auto &x : res.value()) {
      if (x)
        std::cout << x.value() << "\n";
      else
        std::cout << "INF\n";
    }
  } else {
    std::cout << "NEGATIVE CYCLE\n";
  }

  return 0;
}
Back to top page