Module knaptime::threshold

source ·
Expand description

Threshold Knapsack

A variant of the knapsack problem.

Given a list of items with associated weights and values. Maximize the value while ensuring the weight is minimal (weight must be greater than or equal to a given threshold).

Possible optimizations:

Modules