
A company is planning to interview 2n people. Given the array costs where costs[i] = [aCost _i , bCost _i ] , the cost of flying the i ^th person to city a is aCost _i , and the cost of flying the i ^th person to city b is bCost _i .
Return the minimum cost to fly every person to a city such that exactly n people arrive in each city.
2 * n == costs.length2 <= costs.length <= 100costs.length is even.1 <= aCost _i , bCost _i <= 1000