码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode Reconstruct Itinerary

时间:2016-03-23 06:13:43      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

原题链接在这里:https://leetcode.com/problems/reconstruct-itinerary/

题目:

Given a list of airline tickets represented by pairs of departure and arrival airports [from, to], reconstruct the itinerary in order. All of the tickets belong to a man who departs from JFK. Thus, the itinerary must begin with JFK.

Note:

  1. 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"].
  2. All airports are represented by three capital letters (IATA code).
  3. You may assume all tickets form at least one valid itinerary. 

Example 1:
tickets = [["MUC", "LHR"], ["JFK", "MUC"], ["SFO", "SJC"], ["LHR", "SFO"]]
Return ["JFK", "MUC", "LHR", "SFO", "SJC"].

Example 2:
tickets = [["JFK","SFO"],["JFK","ATL"],["SFO","ATL"],["ATL","JFK"],["ATL","SFO"]]
Return ["JFK","ATL","JFK","SFO","ATL","SFO"].
Another possible reconstruction is ["JFK","SFO","ATL","JFK","ATL","SFO"]. But it is larger in lexical order.

题解:

把这些ticket当成edge构建directed graph. 为了保证字母顺序,用了PriorityQueue. 然后做dfs.

Time Complexity: O(n+e). Space: O(n+e).

AC Java:

 1 public class Solution {
 2     Map<String, PriorityQueue<String>> graph = new HashMap<String, PriorityQueue<String>>();
 3     public List<String> findItinerary(String[][] tickets) {
 4         List<String> res = new LinkedList<String>();
 5         if(tickets == null || tickets.length == 0 || tickets[0].length == 0){
 6             return res;
 7         }
 8         
 9         for(String [] edge : tickets){
10             if(!graph.containsKey(edge[0])){
11                 graph.put(edge[0], new PriorityQueue<String>());
12             }
13             graph.get(edge[0]).add(edge[1]);
14         }
15         
16         dfs("JFK", res);
17         return res;
18     }
19     
20     private void dfs(String s, List<String> res){
21         while(graph.containsKey(s) && !graph.get(s).isEmpty()){
22             dfs(graph.get(s).poll(), res);
23         }
24         res.add(0, s);
25     }
26 }

 

LeetCode Reconstruct Itinerary

标签:

原文地址:http://www.cnblogs.com/Dylan-Java-NYC/p/5309418.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!