Maximum independent set
(Mylib/Graph/maximum_independent_set.cpp)
Operations
-
maximum_independent_set(g[n][n])
- 最大独立集合の一つを64bit整数で表記して返す。
- Time complexity $O(2^{n/2} n)$
Requirements
Notes
- 二部グラフでは、(最大独立集合の大きさ) = (グラフの頂点数) - (最大二部マッチングの大きさ)となるので、最大二部マッチングを用いる方が良い。
Problems
References
Verified with
Code
Back to top page