結果

問題 No.848 なかよし旅行
ユーザー tentententen
提出日時 2020-08-31 18:26:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,766 ms / 2,000 ms
コード長 2,594 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 80,096 KB
実行使用メモリ 88,900 KB
最終ジャッジ日時 2024-11-16 20:25:01
合計ジャッジ時間 24,387 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,643 ms
84,136 KB
testcase_01 AC 144 ms
41,620 KB
testcase_02 AC 117 ms
41,108 KB
testcase_03 AC 127 ms
41,412 KB
testcase_04 AC 132 ms
41,532 KB
testcase_05 AC 119 ms
41,372 KB
testcase_06 AC 173 ms
42,528 KB
testcase_07 AC 123 ms
41,100 KB
testcase_08 AC 214 ms
44,336 KB
testcase_09 AC 249 ms
47,408 KB
testcase_10 AC 203 ms
44,508 KB
testcase_11 AC 918 ms
64,144 KB
testcase_12 AC 1,024 ms
65,484 KB
testcase_13 AC 1,351 ms
72,168 KB
testcase_14 AC 523 ms
50,248 KB
testcase_15 AC 1,207 ms
68,668 KB
testcase_16 AC 1,756 ms
88,900 KB
testcase_17 AC 1,500 ms
72,208 KB
testcase_18 AC 831 ms
58,588 KB
testcase_19 AC 766 ms
52,940 KB
testcase_20 AC 247 ms
47,468 KB
testcase_21 AC 1,436 ms
74,204 KB
testcase_22 AC 1,649 ms
84,844 KB
testcase_23 AC 325 ms
47,476 KB
testcase_24 AC 115 ms
41,040 KB
testcase_25 AC 1,766 ms
83,784 KB
testcase_26 AC 110 ms
40,896 KB
testcase_27 AC 98 ms
39,840 KB
testcase_28 AC 114 ms
41,148 KB
testcase_29 AC 101 ms
40,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final long MAX = Long.MAX_VALUE / 10;
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int m = sc.nextInt();
    	int p = sc.nextInt() - 1;
    	int q = sc.nextInt() - 1;
    	int t = sc.nextInt();
    	ArrayList<HashMap<Integer, Integer>> graph = new ArrayList<>();
    	for (int i = 0; i < n; i++) {
    	    graph.add(new HashMap<>());
    	}
    	for (int i = 0; i < m; i++) {
    	    int a = sc.nextInt() - 1;
    	    int b = sc.nextInt() - 1;
    	    int c = sc.nextInt();
    	    graph.get(a).put(b, c);
    	    graph.get(b).put(a, c);
    	}
    	PriorityQueue<Path> queue = new PriorityQueue<>();
    	queue.add(new Path(p, 0));
    	long[] pCosts = getCost(n, queue, graph);
    	queue.add(new Path(q, 0));
    	long[] qCosts = getCost(n, queue, graph);
    	queue.add(new Path(0, 0));
    	long[] zCosts = getCost(n, queue, graph);
    	if (Math.max(pCosts[0], qCosts[0]) * 2 > t) {
    	    System.out.println(-1);
    	    return;
    	}
    	if (pCosts[0] + pCosts[q] + qCosts[0] <= t) {
    	    System.out.println(t);
    	    return;
    	}
    	long max = 0;
    	for (int i = 0; i < n; i++) {
    	    for (int j = 0; j < n; j++) {
    	        if (Math.max(pCosts[i] + pCosts[j], qCosts[i] + qCosts[j]) + zCosts[i] + zCosts[j] <= t) {
    	            max = Math.max(max, t - Math.max(pCosts[i] + pCosts[j], qCosts[i] + qCosts[j]));
    	        }
    	    }
    	}
    	System.out.println(max);
    }
    
    static long[] getCost(int size, PriorityQueue<Path> queue, ArrayList<HashMap<Integer, Integer>> graph) {
        long[] costs = new long[size];
        Arrays.fill(costs, MAX);
        while (queue.size() > 0) {
            Path p = queue.poll();
            if (costs[p.idx] <= p.value) {
                continue;
            }
            costs[p.idx] = p.value;
            for (int x : graph.get(p.idx).keySet()) {
                queue.add(new Path(x, p.value + graph.get(p.idx).get(x)));
            }
        }
        return costs;
    }
    
    static class Path implements Comparable<Path> {
        int idx;
        long value;
        
        public Path(int idx, long value) {
            this.idx = idx;
            this.value = value;
        }
        
        public int compareTo(Path another) {
            if (value == another.value) {
                return 0;
            } else if (value < another.value) {
                return -1;
            } else {
                return 1;
            }
        }
    }
}
0