結果

問題 No.1 道のショートカット
ユーザー scachescache
提出日時 2014-11-12 23:06:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 248 ms / 5,000 ms
コード長 1,717 bytes
コンパイル時間 4,153 ms
コンパイル使用メモリ 78,428 KB
実行使用メモリ 46,252 KB
最終ジャッジ日時 2024-07-20 16:07:10
合計ジャッジ時間 12,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,344 KB
testcase_01 AC 118 ms
40,432 KB
testcase_02 AC 124 ms
39,816 KB
testcase_03 AC 138 ms
41,224 KB
testcase_04 AC 129 ms
41,236 KB
testcase_05 AC 131 ms
41,340 KB
testcase_06 AC 137 ms
41,340 KB
testcase_07 AC 143 ms
41,556 KB
testcase_08 AC 227 ms
45,828 KB
testcase_09 AC 208 ms
44,520 KB
testcase_10 AC 230 ms
45,732 KB
testcase_11 AC 246 ms
46,024 KB
testcase_12 AC 244 ms
45,828 KB
testcase_13 AC 240 ms
46,176 KB
testcase_14 AC 160 ms
41,972 KB
testcase_15 AC 126 ms
41,156 KB
testcase_16 AC 200 ms
42,656 KB
testcase_17 AC 133 ms
41,192 KB
testcase_18 AC 174 ms
41,752 KB
testcase_19 AC 174 ms
42,132 KB
testcase_20 AC 194 ms
42,656 KB
testcase_21 AC 190 ms
42,152 KB
testcase_22 AC 157 ms
41,592 KB
testcase_23 AC 243 ms
46,252 KB
testcase_24 AC 236 ms
45,640 KB
testcase_25 AC 207 ms
42,720 KB
testcase_26 AC 191 ms
42,392 KB
testcase_27 AC 224 ms
46,164 KB
testcase_28 AC 140 ms
41,088 KB
testcase_29 AC 248 ms
46,120 KB
testcase_30 AC 210 ms
42,936 KB
testcase_31 AC 215 ms
44,320 KB
testcase_32 AC 215 ms
44,284 KB
testcase_33 AC 213 ms
43,992 KB
testcase_34 AC 240 ms
45,708 KB
testcase_35 AC 227 ms
45,372 KB
testcase_36 AC 220 ms
45,196 KB
testcase_37 AC 226 ms
44,864 KB
testcase_38 AC 156 ms
41,592 KB
testcase_39 AC 184 ms
42,008 KB
testcase_40 AC 201 ms
43,332 KB
testcase_41 AC 188 ms
42,172 KB
testcase_42 AC 127 ms
41,460 KB
testcase_43 AC 126 ms
41,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class ShortCut {
	public static void main(String[] args) {
		ShortCut p = new ShortCut();
	}

	public ShortCut() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int c = sc.nextInt();
		int v = sc.nextInt();
		Edge[] e = new Edge[v];
		for(int i=0;i<e.length;i++)
			e[i] = new Edge();
		for(int i=0;i<e.length;i++)
			e[i].s = sc.nextInt();
		for(int i=0;i<e.length;i++)
			e[i].t = sc.nextInt();
		for(int i=0;i<e.length;i++)
			e[i].y = sc.nextInt();
		for(int i=0;i<e.length;i++)
			e[i].m = sc.nextInt();
		
		solve(n, c, v, e);
	}

	private final int INF = 1000000;
	private void solve(int n, int c, int v, Edge[] edge) {
		Arrays.sort(edge);
		
		// dp[i,j] : 1からiへコストjで行く時の最小時間
		int[][] dp = new int[50+1][300+1];
		for(int i=2;i<dp.length;i++)
			Arrays.fill(dp[i], INF);
			
		for(int i=0;i<edge.length;i++){
			Edge e = edge[i];
			for(int j=1;j<dp[e.t].length;j++){
				if(j-e.y >= 0)
					dp[e.t][j] = Math.min(dp[e.t][j], Math.min(dp[e.s][j-e.y] + e.m, dp[e.t][j-1]));
			}
		}
		
		int res = INF;
		for(int i=1;i<=c;i++){
			res = Math.min(res, dp[n][i]);
		}
		
		if(res >= INF)
			System.out.println(-1);
		else
			System.out.println(res);
		
		
	}


	private class Edge implements Comparable<Edge>{
		int s;
		int t;
		int y;
		int m;
		
		public Edge(int s, int t, int y, int m) {
			this.s = s;
			this.t = t;
			this.y = y;
			this.m = m;
		}

		public Edge() {
		}

		@Override
		public int compareTo(Edge o) {
			if(this.s != o.s)
				return this.s - o.s;
			else
				return this.t - o.t;
		}

	}
}
0