返回介绍

solution / 0300-0399 / 0332.Reconstruct Itinerary / README_EN

发布于 2024-06-17 01:04:02 字数 5390 浏览 0 评论 0 收藏 0

332. Reconstruct Itinerary

中文文档

Description

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

Solutions

Solution 1

class Solution:
  def findItinerary(self, tickets: List[List[str]]) -> List[str]:
    graph = defaultdict(list)

    for src, dst in sorted(tickets, reverse=True):
      graph[src].append(dst)

    itinerary = []

    def dfs(airport):
      while graph[airport]:
        dfs(graph[airport].pop())
      itinerary.append(airport)

    dfs("JFK")

    return itinerary[::-1]
class Solution {
  void dfs(Map<String, Queue<String>> adjLists, List<String> ans, String curr) {
    Queue<String> neighbors = adjLists.get(curr);
    if (neighbors == null) {
      ans.add(curr);
      return;
    }
    while (!neighbors.isEmpty()) {
      String neighbor = neighbors.poll();
      dfs(adjLists, ans, neighbor);
    }
    ans.add(curr);
    return;
  }

  public List<String> findItinerary(List<List<String>> tickets) {
    Map<String, Queue<String>> adjLists = new HashMap<>();
    for (List<String> ticket : tickets) {
      String from = ticket.get(0);
      String to = ticket.get(1);
      if (!adjLists.containsKey(from)) {
        adjLists.put(from, new PriorityQueue<>());
      }
      adjLists.get(from).add(to);
    }
    List<String> ans = new ArrayList<>();
    dfs(adjLists, ans, "JFK");
    Collections.reverse(ans);
    return ans;
  }
}
class Solution {
public:
  vector<string> findItinerary(vector<vector<string>>& tickets) {
    unordered_map<string, priority_queue<string, vector<string>, greater<string>>> g;
    vector<string> ret;

    // Initialize the graph
    for (const auto& t : tickets) {
      g[t[0]].push(t[1]);
    }

    findItineraryInner(g, ret, "JFK");

    ret = {ret.rbegin(), ret.rend()};

    return ret;
  }

  void findItineraryInner(unordered_map<string, priority_queue<string, vector<string>, greater<string>>>& g, vector<string>& ret, string cur) {
    if (g.count(cur) == 0) {
      // This is the end point
      ret.push_back(cur);
      return;
    } else {
      while (!g[cur].empty()) {
        auto front = g[cur].top();
        g[cur].pop();
        findItineraryInner(g, ret, front);
      }
      ret.push_back(cur);
    }
  }
};

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文