Problem Description
A company is planning to interview 2n people. Given the array costs where costs[i] = [aCosti, bCosti], the cost of flying the ith person to city a is aCosti, and the cost of flying the ith person to city b is bCosti. Return the minimum cost to fly every person to a city such that exactly n people arrive in each city.
Key Insights
- The problem requires balancing the number of people sent to two different cities while minimizing the total cost.
- A greedy approach is suitable, where we prioritize the individuals whose cost difference between the two cities is the largest.
- Sorting the costs based on the difference between aCost and bCost allows us to make optimal decisions about where to send each person.
Space and Time Complexity
Time Complexity: O(n log n) - due to sorting the costs array. Space Complexity: O(1) - we use a constant amount of space beyond the input.
Solution
To solve this problem, we will:
- Calculate the cost difference for each person between the two cities.
- Sort the array of costs based on this difference.
- Select the first n people to send to city A and the remaining n people to city B.
- Sum the costs for the selected individuals to get the minimum total cost.
Data structure used: Array for storing costs and differences.