关于LeetCode题,提交的代码与本地测试结果不一样?

关于LeetCode题,提交的代码与本地测试结果不一样?

public class Test {

    public static void main(String[] args) {
        List<String> list;
        List<List<String>> tickets = new ArrayList<>();
//        String[][] test = {{"MUC", "LHR"}, {"JFK", "MUC"}, {"SFO", "SJC"}, {"LHR", "SFO"}};
        String[][] test = {{"JFK", "SFO"}, {"JFK", "ATL"}, {"SFO", "ATL"}, {"ATL", "JFK"}, {"ATL", "SFO"}};

//        String[][] test = {{"JFK", "KUL"}, {"JFK", "NRT"}, {"NRT", "JFK"}};
//        String[][] test = {{"JFK", "SFO"}, {"JFK", "ATL"}, {"SFO", "ATL"}, {"ATL", "JFK"}, {"ATL", "SFO"}};
        for (String[] t : test) {
            list = new ArrayList<>();
            for (String s : t) {
                list.add(s);
            }
            tickets.add(list);
        }


        System.out.println(tickets);
        List<String> itinerary = new Solution(). findItinerary(tickets);
        System.out.println(itinerary);
    }


}

class Solution {



    public static int endIndex;
    /**
     * 先找头,在根据头出发,而这一题是确定了头
     *
     * @param tickets
     * @return
     */
    public static List<String> findItinerary(List<List<String>> tickets) {
        LinkedList<String> result = new LinkedList<>(); // 记录返回值

        findEnd(tickets);//找最后一个目的端的所在位置;
//        System.out.println(endIndex);
        // 写个递归依次查找下去即可
        findNext("JFK", tickets, result);
        result.addLast(tickets.get(0).get(1));//把最后的目的端插入

        return result;
    }

    private static void findEnd(List<List<String>> tickets) {
        HashMap<String, Integer> hashmap = new HashMap<>();

        for (List<String> ticket : tickets) {
            hashmap.put(ticket.get(1), hashmap.get(ticket.get(1)) == null ? 1 : hashmap.get(ticket.get(1)) + 1);
            hashmap.put(ticket.get(0), hashmap.get(ticket.get(0)) == null ? 1 : hashmap.get(ticket.get(0)) + 1);
        }
        hashmap.put("JFK", hashmap.get("JFK") - 1);
        String end = null;
        for (String s : hashmap.keySet()) {
            if (hashmap.get(s) % 2 != 0) {
                end = s;
            }
        }

        for (int i = 0; i < tickets.size(); i++) {
            if (tickets.get(i).get(1).equals(end)) {
                if (endIndex == 0) {
                    endIndex = i;
                } else if (tickets.get(i).get(0).compareTo(tickets.get(endIndex).get(0)) > 0) {
                    endIndex = i;
                }

            }
        }
    }


    /**
     * 上续提交,不能通过leetcode测试用例,原因看实例2要求
     */
    public static void findNext(String last, List<List<String>> tickets, List<String> result) {
        result.add(last); // 添加上一个

        if (tickets.size() == 1) return;
        int index = -1;
        for (int i = 0; i < tickets.size(); i++) {

            if (tickets.get(i).get(0).equals(last) && i != endIndex) { // 最后一个不要
                if (index == -1) {
                    index = i;
                } else if (tickets.get(i).get(1).compareTo(tickets.get(index).get(1)) < 0)// 根据实例2要求排序
                {
                    index = i;
                }
            }
        }

        List<String> temp = tickets.remove(index);
        findNext(temp.get(1), tickets, result);//依次向下找
    }

}

上续为本地测试代码:

输出结果

[[JFK, SFO], [JFK, ATL], [SFO, ATL], [ATL, JFK], [ATL, SFO]]

[JFK, ATL, JFK, SFO, ATL, SFO]

[JFK, ATL, JFK, SFO, ATL, SFO]

下面是提交leetcode测试代码:


class Solution {
    public static int endIndex;
    /**
     * 先找头,在根据头出发,而这一题是确定了头
     *
     * @param tickets
     * @return
     */
    public static List<String> findItinerary(List<List<String>> tickets) {
        LinkedList<String> result = new LinkedList<>(); // 记录返回值
        findEnd(tickets);//找最后一个目的端的所在位置;
//        System.out.println(endIndex);
        // 写个递归依次查找下去即可
        findNext("JFK", tickets, result);
        result.addLast(tickets.get(0).get(1));//把最后的目的端插入
        return result;
    }
    private static void findEnd(List<List<String>> tickets) {
        HashMap<String, Integer> hashmap = new HashMap<>();
        for (List<String> ticket : tickets) {
            hashmap.put(ticket.get(1), hashmap.get(ticket.get(1)) == null ? 1 : hashmap.get(ticket.get(1)) + 1);
            hashmap.put(ticket.get(0), hashmap.get(ticket.get(0)) == null ? 1 : hashmap.get(ticket.get(0)) + 1);
        }
        hashmap.put("JFK", hashmap.get("JFK") - 1);
        String end = null;
        for (String s : hashmap.keySet()) {
            if (hashmap.get(s) % 2 != 0) {
                end = s;
            }
        }
        for (int i = 0; i < tickets.size(); i++) {
            if (tickets.get(i).get(1).equals(end)) {
                if (endIndex == 0) {
                    endIndex = i;
                } else if (tickets.get(i).get(0).compareTo(tickets.get(endIndex).get(0)) > 0) {
                    endIndex = i;
                }
            }
        }
    }
    /**
     * 上续提交,不能通过leetcode测试用例,原因看实例2要求
     */
    public static void findNext(String last, List<List<String>> tickets, List<String> result) {
        result.add(last); // 添加上一个
        if (tickets.size() == 1) return;
        int index = -1;
        for (int i = 0; i < tickets.size(); i++) {
            if (tickets.get(i).get(0).equals(last) && i != endIndex) { // 最后一个不要
                if (index == -1) {
                    index = i;
                } else if (tickets.get(i).get(1).compareTo(tickets.get(index).get(1)) < 0)// 根据实例2要求排序
                {
                    index = i;
                }
            }
        }
        List<String> temp = tickets.remove(index);
        findNext(temp.get(1), tickets, result);//依次向下找
    }
}

leetcode测试用例报错

执行结果:

解答错误

显示详情

输入:

[["JFK","SFO"],["JFK","ATL"],["SFO","ATL"],["ATL","JFK"],["ATL","SFO"]]

输出:

["JFK","ATL","SFO","ATL","JFK","SFO"]

预期结果:

["JFK","ATL","JFK","SFO","ATL","SFO"]




一直找不到原因,老师帮我看下,十分感激!

正在回答

登陆购买课程后可参与讨论,去登陆

2回答

在 Leetcode 上提交代码,不要使用 static 的变量或者方法。仔细看,Leetcode 模板给出的方法声明都不是 static 的。


Leetcode 每次会创建一个 Solution 的实例,运行测试用例。如果使用 static,会导致 Solution 类的 static 变量记录了上一次的计算结果。


我尝试把你的 static 去掉以后,就不会出现你说的这个问题了。但你的代码似乎还有别的错误,再自己调试试试看?


加油!:)

提问者 慕UI4021841 2020-08-27 14:25:05

备注:LeetCode第332题--重新安排行程

LeetCode 的测试情况,内附代码:https://leetcode-cn.com/submissions/detail/102168180/

本地执行情况:

[[JFK, SFO], [JFK, ATL], [SFO, ATL], [ATL, JFK], [ATL, SFO]]

[JFK, ATL, JFK, SFO, ATL, SFO]




问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
算法与数据结构
  • 参与学习       2598    人
  • 解答问题       1093    个

慕课网算法名师Liuyubobobo,5年集大成之作 从0到工作5年,算法与数据结构系统解决方案

了解课程
请稍等 ...
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师