Change project structure

This commit is contained in:
stefiosif
2022-06-27 22:45:26 +03:00
parent e488b309c8
commit 8d8e6ef831
5 changed files with 90 additions and 9 deletions

View File

@@ -0,0 +1,92 @@
#ifndef DECREMENTAL_SCC_H_
#define DECREMENTAL_SCC_H_
#include "graph/digraph.h"
#include "graph/scc.h"
#include "algorithm/tarjan.h"
#include "algorithm/bfs.h"
#include "algorithm/roditty_zwick.h"
using namespace graph;
namespace algo {
template<typename T>
class DecrementalSCC : public RodittyZwick<T> {
public:
DecrementalSCC(Digraph<T> G) : G(G) {}
//
void init();
//
bool query(const T& u, const T& v);
//
void remove(const T& u, const T& v);
private:
Digraph<T> G;
// Array used to answer strong connectivity queries in O(1) time
std::map<T, T> A;
// Connect SCC/SCC representative with 2 SPTs
// pair.first: Shortest-paths out-tree
// pair.second: Shortest-paths in-tree
std::map<T, std::pair<Digraph<T>, Digraph<T>>> SPT;
// Connect each representative with its SCC
std::map<T, SCC<T>> SCCs;
};
template<typename T>
void DecrementalSCC<T>::init() {
auto tarjan = Tarjan<T>(G).run();
for (auto& C : tarjan) {
const auto& w = C.representative();
// Create shortest-paths out-tree/in-tree
auto outTree = BFS<T>(C).run(w);
SPT[w] = std::make_pair(outTree, outTree.reverse());
// Update A with current SCCs vertices
for (const auto& v : C.vertices)
A[v] = w;
// Link SCC with its representative w
SCCs[w] = C;
}
}
template<typename T>
bool DecrementalSCC<T>::query(const T& u, const T& v) {
return A[u] == A[v];
}
template<typename T>
void DecrementalSCC<T>::remove(const T& u, const T& v) {
// If u and v are not in the same SCC, do nothing
if (A[u] != A[v]) return;
const auto& w = A[u];
// If edge e(u, v) is not contained in In(w) and Out(w), do nothing
if (!SPT[w].first.vertices.contains(w) &&
!SPT[w].second.vertices.contains(w))
return;
// Update In(w) and Out(w)
auto inTree = BFS<T>(SCCs[w]).run(w);
SPT[w] = std::make_pair(inTree, inTree.reverse());
if (!SPT[w].second.vertices.contains(u) ||
!SPT[w].first.vertices.contains(v)) {
// TODO: Decompose C into C1, C2, ... Ck
}
}
}; // namespace algo
#endif