MCPcopy Create free account
hub / github.com/SuprDewd/CompetitiveProgramming / add_edge

Method add_edge

code/graph/hopcroft_karp.cpp:30–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28 return false; }
29 return true; }
30 void add_edge(int i, int j) { adj[i].push_back(j); }
31 int maximum_matching() {
32 int matching = 0;
33 memset(L, -1, sizeof(int) * N);

Callers

nothing calls this directly

Calls 1

push_backMethod · 0.80

Tested by

no test coverage detected