結果

問題 No.1 道のショートカット
ユーザー GrenacheGrenache
提出日時 2016-03-04 23:44:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 1,933 bytes
コンパイル時間 3,655 ms
コンパイル使用メモリ 78,172 KB
実行使用メモリ 47,564 KB
最終ジャッジ日時 2024-07-20 16:21:13
合計ジャッジ時間 11,658 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,328 KB
testcase_01 AC 109 ms
41,188 KB
testcase_02 AC 122 ms
41,336 KB
testcase_03 AC 125 ms
41,120 KB
testcase_04 AC 101 ms
40,304 KB
testcase_05 AC 111 ms
41,200 KB
testcase_06 AC 124 ms
41,396 KB
testcase_07 AC 141 ms
41,592 KB
testcase_08 AC 227 ms
46,364 KB
testcase_09 AC 202 ms
45,832 KB
testcase_10 AC 206 ms
45,916 KB
testcase_11 AC 213 ms
46,576 KB
testcase_12 AC 237 ms
47,564 KB
testcase_13 AC 249 ms
47,108 KB
testcase_14 AC 154 ms
42,088 KB
testcase_15 AC 110 ms
40,896 KB
testcase_16 AC 186 ms
43,260 KB
testcase_17 AC 110 ms
40,428 KB
testcase_18 AC 158 ms
41,876 KB
testcase_19 AC 157 ms
42,180 KB
testcase_20 AC 174 ms
42,828 KB
testcase_21 AC 161 ms
42,404 KB
testcase_22 AC 142 ms
42,072 KB
testcase_23 AC 211 ms
46,108 KB
testcase_24 AC 220 ms
46,264 KB
testcase_25 AC 183 ms
43,400 KB
testcase_26 AC 173 ms
42,540 KB
testcase_27 AC 213 ms
46,340 KB
testcase_28 AC 124 ms
41,392 KB
testcase_29 AC 201 ms
45,860 KB
testcase_30 AC 172 ms
43,360 KB
testcase_31 AC 188 ms
44,320 KB
testcase_32 AC 214 ms
45,816 KB
testcase_33 AC 196 ms
44,804 KB
testcase_34 AC 231 ms
46,744 KB
testcase_35 AC 192 ms
45,288 KB
testcase_36 AC 192 ms
45,380 KB
testcase_37 AC 169 ms
44,784 KB
testcase_38 AC 136 ms
41,880 KB
testcase_39 AC 174 ms
43,084 KB
testcase_40 AC 172 ms
42,836 KB
testcase_41 AC 152 ms
41,764 KB
testcase_42 AC 101 ms
40,364 KB
testcase_43 AC 117 ms
41,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;


public class Main_yukicoder1 {

    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();
        }
        for (int i = 0; i < v; i++) {
        	t[i] = sc.nextInt();
        }
        for (int i = 0; i < v; i++) {
        	y[i] = sc.nextInt();
        }
        for (int i = 0; i < v; i++) {
        	m[i] = sc.nextInt();
        }

        List<List<Triple>> edges = new ArrayList<List<Triple>>();
        for (int i = 0; i < n; i++) {
        	edges.add(new ArrayList<Triple>());
        }

        for (int i = 0; i < v; i++) {
        	edges.get(s[i] - 1).add(new Triple(t[i] - 1, y[i], m[i]));
        }

        final int INF = Integer.MAX_VALUE / 2;
        int[][] dp = new int[n][c + 1];
        for (int i = 0; i < n; i++) {
        	Arrays.fill(dp[i], INF);
        }
        dp[0][0] = 0;

        for (int i = 0; i < n; i++) {
        	for (int j = 0; j <= c; j++) {
        		for (Triple e : edges.get(i)) {
        			if (j + e.b <= c) {
        				dp[e.a][j + e.b] = Math.min(dp[e.a][j + e.b], dp[i][j] + e.c);
        			}
        		}
        	}
        }

        int min = INF;
        for (int i = 0; i <= c; i++) {
        	min = Math.min(min, dp[n - 1][i]);
        }

        if (min == INF) {
        	System.out.println(-1);
        } else {
        	System.out.println(min);
        }

        sc.close();
    }

    private static class Triple {
    	int a;
    	int b;
    	int c;

    	Triple(int a, int b, int c) {
    		this.a = a;
    		this.b = b;
    		this.c = c;
    	}
    }
}
0