結果

問題 No.1 道のショートカット
ユーザー htensaihtensai
提出日時 2020-05-11 19:28:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 248 ms / 5,000 ms
コード長 1,926 bytes
コンパイル時間 3,742 ms
コンパイル使用メモリ 79,364 KB
実行使用メモリ 46,116 KB
最終ジャッジ日時 2024-07-20 16:47:53
合計ジャッジ時間 11,768 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,156 KB
testcase_01 AC 128 ms
41,140 KB
testcase_02 AC 128 ms
40,968 KB
testcase_03 AC 137 ms
41,288 KB
testcase_04 AC 130 ms
41,096 KB
testcase_05 AC 130 ms
41,064 KB
testcase_06 AC 134 ms
41,340 KB
testcase_07 AC 149 ms
41,236 KB
testcase_08 AC 217 ms
45,464 KB
testcase_09 AC 220 ms
44,364 KB
testcase_10 AC 218 ms
45,680 KB
testcase_11 AC 244 ms
45,920 KB
testcase_12 AC 238 ms
45,612 KB
testcase_13 AC 247 ms
45,824 KB
testcase_14 AC 170 ms
41,916 KB
testcase_15 AC 128 ms
41,104 KB
testcase_16 AC 185 ms
42,748 KB
testcase_17 AC 114 ms
40,268 KB
testcase_18 AC 171 ms
41,660 KB
testcase_19 AC 164 ms
41,616 KB
testcase_20 AC 205 ms
42,420 KB
testcase_21 AC 190 ms
41,760 KB
testcase_22 AC 160 ms
41,540 KB
testcase_23 AC 241 ms
45,588 KB
testcase_24 AC 222 ms
45,660 KB
testcase_25 AC 199 ms
42,600 KB
testcase_26 AC 196 ms
42,052 KB
testcase_27 AC 230 ms
45,448 KB
testcase_28 AC 139 ms
41,232 KB
testcase_29 AC 232 ms
45,628 KB
testcase_30 AC 195 ms
42,452 KB
testcase_31 AC 209 ms
44,188 KB
testcase_32 AC 228 ms
44,732 KB
testcase_33 AC 207 ms
43,532 KB
testcase_34 AC 248 ms
46,116 KB
testcase_35 AC 223 ms
45,344 KB
testcase_36 AC 212 ms
45,216 KB
testcase_37 AC 210 ms
44,844 KB
testcase_38 AC 164 ms
41,908 KB
testcase_39 AC 184 ms
41,904 KB
testcase_40 AC 206 ms
42,988 KB
testcase_41 AC 191 ms
41,884 KB
testcase_42 AC 127 ms
41,172 KB
testcase_43 AC 129 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int c = sc.nextInt();
		int size = sc.nextInt();
		int[] starts = new int[size];
		int[] ends = new int[size];
		int[] costs = new int[size];
		int[] times = new int[size];
		for (int i = 0; i < size; i++) {
		    starts[i] = sc.nextInt() - 1;
		}
		for (int i = 0; i < size; i++) {
		    ends[i] = sc.nextInt() - 1;
		}
		for (int i = 0; i < size; i++) {
		    costs[i] = sc.nextInt();
		}
		for (int i = 0; i < size; i++) {
		    times[i] = sc.nextInt();
		}
		ArrayList<ArrayList<Path>> graph = new ArrayList<>();
		for (int i = 0; i < n; i++) {
		    graph.add(new ArrayList<>());
		}
		for (int i = 0; i < size; i++) {
		    graph.get(starts[i]).add(new Path(ends[i], costs[i], times[i]));
		}
		PriorityQueue<Path> queue = new PriorityQueue<>();
		queue.add(new Path(0, c, 0));
		int[] values = new int[n];
		Arrays.fill(values, Integer.MAX_VALUE);
		while (queue.size() > 0) {
		    Path p = queue.poll();
		    if (values[p.idx] <= p.time) {
		        continue;
		    }
		    values[p.idx] = p.time;
		    for (Path x : graph.get(p.idx)) {
		        if (x.cost > p.cost) {
		            continue;
		        }
		        queue.add(new Path(x.idx, p.cost - x.cost, p.time + x.time));
		    }
		}
		if (values[n - 1] == Integer.MAX_VALUE) {
		    System.out.println(-1);
		} else {
		    System.out.println(values[n - 1]);
		}
	}
	
	static class Path implements Comparable<Path> {
	    int idx;
	    int cost;
	    int time;
	    
	    public Path(int idx, int cost, int time) {
	        this.idx = idx;
	        this.cost = cost;
	        this.time = time;
	    }
	    
	    public int compareTo(Path another) {
	        if (cost == another.cost) {
	            return time - another.time;
	        } else {
	            return another.cost - cost;
	        }
	    }
	}
}
0