I have the following problem. Given a graph $G=(V,E)$ with node costs, the task is to select a subset of nodes $S$ such that its cost $h(S)$, which is sum of costs of all nodes in S, does not exceed a given parameter $C$ and $|S|$ is maximised. I can express this problem as follows: $$ \max. f=|S|\quad\text{ such that }\quad h(S) \leq C $$ Basically, I want to select as many nodes as possible without exceeding $C$. If I'll choose the nodes with smallest costs, this will maximise the number of nodes in $S$. I want to formally show the equivalence between these two problem: $$ \max. \{f\; |\; h(S) \leq C\} \Longrightarrow \min. \{h(S)\}\quad\text{ and }\quad h(S) \leq C $$ I would really appreciate any suggestions or links/references.
Tell me more
×
Mathematics Stack Exchange is a question and answer site for
people studying math at any level and professionals in related fields. It's 100% free, no registration required.
|