結果
問題 | No.1 道のショートカット |
ユーザー | jp_ste |
提出日時 | 2016-03-03 20:04:11 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 353 ms / 5,000 ms |
コード長 | 2,836 bytes |
コンパイル時間 | 2,260 ms |
コンパイル使用メモリ | 78,256 KB |
実行使用メモリ | 45,936 KB |
最終ジャッジ日時 | 2024-07-20 16:21:26 |
合計ジャッジ時間 | 11,158 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
41,056 KB |
testcase_01 | AC | 97 ms
40,056 KB |
testcase_02 | AC | 99 ms
39,872 KB |
testcase_03 | AC | 116 ms
41,160 KB |
testcase_04 | AC | 98 ms
40,216 KB |
testcase_05 | AC | 110 ms
40,032 KB |
testcase_06 | AC | 114 ms
41,240 KB |
testcase_07 | AC | 117 ms
41,156 KB |
testcase_08 | AC | 311 ms
45,032 KB |
testcase_09 | AC | 202 ms
43,836 KB |
testcase_10 | AC | 265 ms
43,832 KB |
testcase_11 | AC | 318 ms
45,076 KB |
testcase_12 | AC | 350 ms
45,936 KB |
testcase_13 | AC | 353 ms
45,856 KB |
testcase_14 | AC | 132 ms
41,512 KB |
testcase_15 | AC | 111 ms
41,108 KB |
testcase_16 | AC | 164 ms
42,684 KB |
testcase_17 | AC | 114 ms
41,128 KB |
testcase_18 | AC | 149 ms
41,760 KB |
testcase_19 | AC | 141 ms
41,784 KB |
testcase_20 | AC | 188 ms
42,488 KB |
testcase_21 | AC | 168 ms
42,004 KB |
testcase_22 | AC | 126 ms
41,404 KB |
testcase_23 | AC | 334 ms
45,288 KB |
testcase_24 | AC | 335 ms
44,808 KB |
testcase_25 | AC | 186 ms
42,504 KB |
testcase_26 | AC | 167 ms
42,704 KB |
testcase_27 | AC | 298 ms
44,052 KB |
testcase_28 | AC | 122 ms
41,480 KB |
testcase_29 | AC | 225 ms
44,476 KB |
testcase_30 | AC | 173 ms
42,932 KB |
testcase_31 | AC | 180 ms
43,596 KB |
testcase_32 | AC | 236 ms
44,016 KB |
testcase_33 | AC | 208 ms
44,404 KB |
testcase_34 | AC | 328 ms
45,180 KB |
testcase_35 | AC | 165 ms
43,316 KB |
testcase_36 | AC | 197 ms
43,792 KB |
testcase_37 | AC | 175 ms
43,744 KB |
testcase_38 | AC | 128 ms
41,652 KB |
testcase_39 | AC | 148 ms
42,088 KB |
testcase_40 | AC | 171 ms
43,244 KB |
testcase_41 | AC | 145 ms
41,704 KB |
testcase_42 | AC | 101 ms
40,184 KB |
testcase_43 | AC | 112 ms
40,036 KB |
ソースコード
import java.util.ArrayList; import java.util.Scanner; public class Main { public static void main(String[] args) { try (Scanner scan = new Scanner(System.in)) { int N = scan.nextInt(); int C = scan.nextInt(); int V = scan.nextInt(); int inFrom[] = new int[V]; int inTo[] = new int[V]; int inCost[] = new int[V]; int inTime[] = new int[V]; for(int i=0; i<V; i++) inFrom[i] = Integer.parseInt(scan.next()); for(int i=0; i<V; i++) inTo[i] = Integer.parseInt(scan.next()); for(int i=0; i<V; i++) inCost[i] = Integer.parseInt(scan.next()); for(int i=0; i<V; i++) inTime[i] = Integer.parseInt(scan.next()); ArrayList<Path> pathList = new ArrayList<>(); for(int i=0; i<V; i++) { Path path = new Path(inFrom[i], inTo[i], inCost[i], inTime[i]); pathList.add(path); } int minTime[][] = new int[N+1][C+1]; for(int i=1; i<=N; i++) { for(int j=0; j<=C; j++) { if(i==1 && j==C) { minTime[i][j] = 0; } else { minTime[i][j] = Integer.MAX_VALUE; } } } for(int place = 1; place <= N; place++) { for(int i=C; i>=0; i--) { if(minTime[place][i] != Integer.MAX_VALUE) { int cost = i; int time = minTime[place][i]; for(Path path : pathList) { if(path.start == place) { int nextPlace = path.end; int nextCost = cost - path.cost; int nextTime = time + path.time; if(nextCost < 0) continue; minTime[nextPlace][nextCost] = Math.min(minTime[nextPlace][nextCost], nextTime); } } } } } int ans = Integer.MAX_VALUE; for(int i=0; i<=C; i++) { ans = Math.min(minTime[N][i], ans); } if(ans == Integer.MAX_VALUE) { System.out.println(-1); } else { System.out.println(ans); } } } } class Path { int start; int end; int cost; int time; Path(int start, int end, int cost, int time) { this.start = start; this.end = end; this.cost = cost; this.time = time; } }