Skip to content

Week 8 | Session 4: SC Network Design — Heuristic Approaches (H1 & H2)

Course: Supply Chain Digitization — Module 3: Analytics in SCM



Network Structure: 2-tier network (Manufacturer → Warehouse → Retailer).

  • Manufacturers: M1, M2
  • Warehouses: W1, W2, W3
  • Retailers: R1, R2, R3, R4

Network Structure

Assumptions: Production and handling costs are the same across facilities (simplified). Only transportation costs vary.

Objective: Find the optimal distribution strategy — which manufacturer supplies which warehouse, and which warehouse serves which retailer — to minimize total distribution cost.

Cost Matrix


Heuristic Approaches Overview

A rule-based, practical approach to find a good (not necessarily optimal) solution.

  • Faster and simpler than full LP optimization.
  • Different heuristics can give different costs for the same problem.
  • Useful as a starting point.

3. Heuristic 1 — Cheapest Warehouse First

Section titled “3. Heuristic 1 — Cheapest Warehouse First”
  1. Pick the warehouse with lowest total shipping cost to all retailers.
  2. Route all retailer demand through that warehouse.
  3. Pick the cheapest manufacturer to supply that warehouse — exhaust its capacity first.
  4. Fulfill remaining demand from the next manufacturer.
  • W1 has the lowest cost to all 4 retailers.
  • M1 is cheaper to W1 and supplies first (capacity 1,50,000). Supplies R1, R2, R3 fully, and 2,000 units to R4.
  • M2 supplies the balance for R4 (68,000 units).

Heuristic 1 Solution Heuristic 1 Flow

Result: Total Cost = ₹9,61,000


4. Heuristic 2 — Cheapest End-to-End Path per Retailer

Section titled “4. Heuristic 2 — Cheapest End-to-End Path per Retailer”
  • For each retailer individually, evaluate all 6 possible paths (2 Manufacturers × 3 Warehouses).
  • Select the path (M → W → Retailer) with the minimum total cost.
  • Apply capacity constraints after selecting paths.

Heuristic 2 Paths Heuristic 2 Details

  • R1, R2, R3: Best path is M1 → W1.
  • R4: Tie between M1→W1 and M2→W2. Since M1’s capacity is almost full, the balance of 68,000 goes via M2 → W2.

Heuristic 2 Flow

Result: Total Cost = ₹7,57,000 ← better than H1. (H2 routes R4 via W2 instead of W1).


Heuristic 1Heuristic 2Optimal (next session)
LogicPick cheapest WH globally, then cheapest MfrFind cheapest end-to-end path per retailerLP / solver
Total Cost₹9,61,000₹7,57,000? (≤ ₹7,57,000)

Heuristic Comparison

H2 improved cost by ~21% over H1 simply by evaluating full paths. But: Is H2 the best possible? We don’t know yet. The next session will solve this using LP/Solver to find the true optimal.


  • SC Network Design: 2-tier problem (Mfr → WH → Retailer). Minimize total cost.
  • Heuristic 1: Pick cheapest WH for all retailers → assign cheapest Mfr first. Cost: ₹9,61,000.
  • Heuristic 2: Evaluate full end-to-end path per retailer → pick min cost path. Cost: ₹7,57,000.
  • Key insight: H2 beats H1 because it considers the full Mfr→WH→Retailer path.