[leetcode] 332. Reconstruct Itinerary

2023. 2. 20. 09:54노트/Algorithm : 알고리즘

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.

 

Example 1:

Input: tickets = [["MUC","LHR"],["JFK","MUC"],["SFO","SJC"],["LHR","SFO"]]
Output: ["JFK","MUC","LHR","SFO","SJC"]

Example 2:

Input: tickets = [["JFK","SFO"],["JFK","ATL"],["SFO","ATL"],["ATL","JFK"],["ATL","SFO"]]
Output: ["JFK","ATL","JFK","SFO","ATL","SFO"]
Explanation: Another possible reconstruction is ["JFK","SFO","ATL","JFK","ATL","SFO"] but it is larger in lexical order.

 

Constraints:

  • 1 <= tickets.length <= 300
  • tickets[i].length == 2
  • fromi.length == 3
  • toi.length == 3
  • fromi and toi consist of uppercase English letters.
  • fromi != toi
class Solution(object):
    def findItinerary(self, tickets):
        """
        :type tickets: List[List[str]]
        :rtype: List[str]
        """
        graph = collections.defaultdict(list)
        # 그래프 순서대로 구성 
        for a, b in sorted(tickets, reverse = True):
            graph[a].append(b)

        route = [] 
        def dfs(a):
            # 첫번째 값을 읽어 어휘 순 방문 
            while graph[a]:
                dfs(graph[a].pop())
            route.append(a)

        dfs('JFK')

        return route[::-1]

'노트 > Algorithm : 알고리즘' 카테고리의 다른 글

[leetcode] 743. Network Delay Time  (0) 2023.02.22
[leetcode] 207. Course Schedule  (0) 2023.02.21
[leetcode] 78. Subsets  (0) 2023.02.08
[leetcode] 39. Combination Sum  (0) 2023.02.08
[leetcode] 77. Combinations  (0) 2023.02.06