結果
問題 | No.1 道のショートカット |
ユーザー | mastersatoshi |
提出日時 | 2015-07-24 02:20:38 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,974 bytes |
コンパイル時間 | 2,447 ms |
コンパイル使用メモリ | 79,424 KB |
実行使用メモリ | 70,040 KB |
最終ジャッジ日時 | 2024-07-08 04:10:41 |
合計ジャッジ時間 | 15,554 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
37,100 KB |
testcase_01 | AC | 57 ms
36,936 KB |
testcase_02 | AC | 55 ms
37,136 KB |
testcase_03 | AC | 54 ms
37,100 KB |
testcase_04 | WA | - |
testcase_05 | AC | 53 ms
36,780 KB |
testcase_06 | AC | 53 ms
36,936 KB |
testcase_07 | AC | 55 ms
36,976 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 54 ms
36,764 KB |
testcase_16 | WA | - |
testcase_17 | AC | 54 ms
36,976 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); int C = Integer.parseInt(br.readLine()); int V = Integer.parseInt(br.readLine()); int[] S = convert(br.readLine().split(" ")); int[] T = convert(br.readLine().split(" ")); int[] Y = convert(br.readLine().split(" ")); int[] M = convert(br.readLine().split(" ")); int[][] cost = new int[N + 1][N + 1]; int[][] time = new int[N + 1][N + 1]; //経路形成(単方向) for (int i = 0; i < V; i++) { cost[S[i]][T[i]] = Y[i]; time[S[i]][T[i]] = M[i]; } ArrayList<int[]> next = new ArrayList(); for (int i = 2; i <= N; i++) { if (cost[1][i] != 0) { int[] tmp = new int[4]; tmp[0] = 1; tmp[1] = i; tmp[2] = cost[1][i]; tmp[3] = time[1][i]; next.add(tmp); } } next.sort(new CustomComparator()); int[] minCost = new int[N + 1]; int[] minTime = new int[N + 1]; Arrays.fill(minCost, Integer.MAX_VALUE); Arrays.fill(minTime, Integer.MAX_VALUE); minCost[1] = 0; minTime[1] = 0; while (!next.isEmpty()) { int[] tmp = next.get(0); next.remove(0); if (minCost[tmp[0]] + tmp[2] <= C) { minCost[tmp[1]] = minCost[tmp[0]] + tmp[2]; minTime[tmp[1]] = minTime[tmp[0]] + tmp[3]; for (int i = 1; i <= N; i++) { if (cost[tmp[1]][i] != 0) { int[] tmp2 = new int[4]; tmp2[0] = tmp[1]; tmp2[1] = i; tmp2[2] = cost[tmp[1]][i]; tmp2[3] = time[tmp[1]][i]; next.add(tmp2); } } next.sort(new CustomComparator()); } } if (minCost[N] <= C) { System.out.println(minTime[N]); } else { System.out.println(-1); } } private static int[] convert(String[] source) { int[] dest = new int[source.length]; for (int i = 0; i < source.length; i++) { dest[i] = Integer.parseInt(source[i]); } return dest; } static class CustomComparator implements Comparator<int[]> { @Override public int compare(int[] a, int[] b) { int no1 = a[2]; int no2 = b[2]; if (no1 > no2) { return 1; } else if (no1 == no2) { return 0; } else { return -1; } } } }