Reconstruct Itinerary - Medium - L

1 minute read

Published:

Question

  • https://leetcode.com/problems/reconstruct-itinerary/

You are given a list of airline tickets where tickets[i] = [fromi, toi] represent the departure and the arrival airports of one flight. Reconstruct the itinerary in order and return it.

All of the tickets belong to a man who departs from “JFK”, thus, the itinerary must begin with “JFK”. If there are multiple valid itineraries, you should return the itinerary that has the smallest lexical order when read as a single string.

For example, the itinerary [“JFK”, “LGA”] has a smaller lexical order than [“JFK”, “LGB”]. You may assume all tickets form at least one valid itinerary. You must use all the tickets once and only once.

Approach

  • DFS

Solution

class Solution {
private:
    vector<string> res;
    unordered_map <string, multiset<string>> mymap; 
    
    void dfs (string node) {
        while(!mymap[node].empty()) {
            auto iter = mymap[node].begin();
            string neigh = *iter;
            // Remove the edge
            mymap[node].erase(iter);
            dfs(neigh);
        }

        res.push_back(node);
    }

public:
    vector<string> findItinerary(vector<vector<string>>& tickets) {
        if (tickets.size() == 0) {
            return res;
        }
        
        // Make the adj matrix
        for (auto temp : tickets) {
            mymap[temp[0]].insert(temp[1]);
        }
        
        // Do DFS from JFK
        dfs("JFK");
        
        reverse(res.begin(), res.end());
        return res;
    }
};