結果
| 問題 |
No.1 道のショートカット
|
| コンテスト | |
| ユーザー |
takeya_okino
|
| 提出日時 | 2017-06-16 22:11:06 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,009 bytes |
| コンパイル時間 | 2,493 ms |
| コンパイル使用メモリ | 78,260 KB |
| 実行使用メモリ | 58,580 KB |
| 最終ジャッジ日時 | 2024-07-08 04:55:17 |
| 合計ジャッジ時間 | 12,257 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 3 |
| other | AC * 4 WA * 18 RE * 18 |
ソースコード
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];
int[][] cost = new int[N][N];
int[][] time = new int[N][N];
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[k][j + e.cost] != -1) {
if(min == -1) {
min = dp[k][j + e.cost] + e.time;
} else {
min = Math.min(min, dp[k][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;
}
}
takeya_okino