321. p-Median

-Median Problem: place exactly facilities among candidates to minimize the total assigned distance / cost. No fixed facility cost — the constraint is “exactly “.

321.1. Formulation

Choose facilities from candidate set to minimize:

s.t.:

(Here is the demand weight of customer .)

321.2. Difference from UFLP

In practice, the two are related: solving -median for varying traces out the cost-vs-number-of-facilities trade-off curve that UFLP would balance via the fixed costs.

321.3. Solution methods

NP-hard. Methods:

321.4. Applications

321.5. Variants

321.6. See also