Solve using brute force and heuristic method 4 Three compute
Solution
Brute force method considers all the possible alternatives for determining the optimal solution. Using brute force method, we calculate the total transportation for every possible alternative of locaitons for the three computers and select the best locations which minimize the total transportation time.
The Minimum transportation time from department A is 1 to location 6.
Minimum transportation time from department B is 0 for location 4
Minimum transportation time from department C is 1 for location 3
Minimum transportation time from department D is 0 for location 6
Minimum transportation time from department E is 2 for location 3
Minimum transportation time from department F is 0 for location 2.
First alternative solution: locations 3,4 and 6, to service all the six departments. Total transportation time
= 1*8 + 0*16 + 1*24 + 0*10 + 2*4 + 4*15
= 100
Second alternative solution:
locations 2,3 and 6, to service all the six departments. Total transportation time
= 1*8 + 2*16 + 1*24 + 0*10 + 2*4 + 0*15
= 72
Second alternative provies the minimum transportation time.
Therefore, the best locations for the computers are 2, 3 and 6
