# Balanced cut problemLast edited: 2023-11-16# StatementBalanced cut problemGiven an undirected graph $G = (V,E)$ and an integer $b$. Output a cut $S, T \subset V$ such that $cut(S,T) \leq b$ or no if no such cut exists.# Solutions# Theory# Related problems