Question
OPT is the minimum, over all subsets S of the items, of max{w(S), w(S ')} Prove that OPT max_j * w_j Prove that OPT
OPT is the minimum, over all subsets S of the items, of max{w(S), w(S ')}
Prove that OPT ≥ max_j * w_j
Prove that OPT ≥ 1/2 ·∑ w_j for sum of j=1 to n
There are n items with non-negative weights w1, . . . , wn. For each subset S of the items, define S’s weight as w(S) = ∑_{j∈S } wj , the sum of the weights of the items in S.
Splitting the items into sets S and S' = {1, . . . , n} S such that the max{w(S), w(S)} is minimized.
The set is split by
A = ∅, B = ∅
for i = 1 to n
if w(A) ≤ w(B)
A = A ∪ {i}
else B = B ∪ {i}
return (A, B)
Step by Step Solution
3.41 Rating (148 Votes )
There are 3 Steps involved in it
Step: 1
Given two subsets A and B of items we can define OPTA B as the minimum over all subsets S of items o...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Document Format ( 2 attachments)
635d758f47afc_175807.pdf
180 KBs PDF File
635d758f47afc_175807.docx
120 KBs Word File
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started