mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
7f6e0b656f
* Moved fractional knapsack from 'dynamic_programming' to 'greedy_methods' * Updated DIRECTORY.md
28 lines
578 B
Python
28 lines
578 B
Python
from bisect import bisect
|
|
from itertools import accumulate
|
|
|
|
|
|
def frac_knapsack(vl, wt, w, n):
|
|
"""
|
|
>>> frac_knapsack([60, 100, 120], [10, 20, 30], 50, 3)
|
|
240.0
|
|
"""
|
|
|
|
r = sorted(zip(vl, wt), key=lambda x: x[0] / x[1], reverse=True)
|
|
vl, wt = [i[0] for i in r], [i[1] for i in r]
|
|
acc = list(accumulate(wt))
|
|
k = bisect(acc, w)
|
|
return (
|
|
0
|
|
if k == 0
|
|
else sum(vl[:k]) + (w - acc[k - 1]) * (vl[k]) / (wt[k])
|
|
if k != n
|
|
else sum(vl[:k])
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import doctest
|
|
|
|
doctest.testmod()
|