結果
問題 | No.1 道のショートカット |
ユーザー |
![]() |
提出日時 | 2017-06-16 22:43:50 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 235 ms / 5,000 ms |
コード長 | 1,947 bytes |
コンパイル時間 | 2,353 ms |
コンパイル使用メモリ | 78,028 KB |
実行使用メモリ | 47,172 KB |
最終ジャッジ日時 | 2024-07-20 16:31:21 |
合計ジャッジ時間 | 10,343 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 40 |
ソースコード
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 V = sc.nextInt(); int[] s = new int[V]; int[] t = new int[V]; int[] y = new int[V]; int[] m = new int[V]; for(int i = 0; i < V; i++) { s[i] = sc.nextInt() - 1; } for(int i = 0; i < V; i++) { t[i] = sc.nextInt() - 1; } for(int i = 0; i < V; i++) { y[i] = sc.nextInt(); } for(int i = 0; i < V; i++) { m[i] = sc.nextInt(); } ArrayList<Edge>[] edge = new ArrayList[N]; for(int i = 0; i < N; i++) { edge[i] = new ArrayList<Edge>(); } for(int i = 0; i < V; i++) { Edge e = new Edge(s[i], t[i], y[i], m[i]); edge[t[i]].add(e); } // dp[i][j]は頂点iで金額j円持っている状態に行く最小時間を表す(不可能なら-1とする) int[][] dp = new int[N][C + 1]; for(int j = 0; j < C; j++) { dp[0][j] = -1; } for(int i = 1; i < N; i++) { for(int j = 0; j < C + 1; j++) { int min = -1; for(int k = 0; k < edge[i].size(); k++) { Edge e = edge[i].get(k); if(j + e.cost < C + 1) { if(dp[e.s][j + e.cost] != -1) { if(min == -1) { min = dp[e.s][j + e.cost] + e.time; } else { min = Math.min(min, dp[e.s][j + e.cost] + e.time); } } } } dp[i][j] = min; } } int ans = Integer.MAX_VALUE; for(int j = 0; j < C + 1; j++) { if(dp[N - 1][j] > 0) ans = Math.min(ans, dp[N - 1][j]); } if(ans == Integer.MAX_VALUE) ans = -1; System.out.println(ans); } } class Edge { int s; int t; int cost; int time; Edge(int s, int t, int cost, int time) { this.s = s; this.t = t; this.cost = cost; this.time = time; } }