結果

問題 No.1 道のショートカット
ユーザー spaciaspacia
提出日時 2016-01-01 22:26:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,370 bytes
コンパイル時間 2,379 ms
コンパイル使用メモリ 77,680 KB
実行使用メモリ 53,824 KB
最終ジャッジ日時 2024-07-08 04:19:25
合計ジャッジ時間 6,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,324 KB
testcase_01 AC 52 ms
50,016 KB
testcase_02 AC 53 ms
49,992 KB
testcase_03 AC 52 ms
50,016 KB
testcase_04 WA -
testcase_05 AC 51 ms
50,332 KB
testcase_06 AC 56 ms
50,188 KB
testcase_07 AC 54 ms
50,540 KB
testcase_08 AC 83 ms
51,548 KB
testcase_09 AC 64 ms
50,904 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 55 ms
50,412 KB
testcase_16 WA -
testcase_17 AC 54 ms
50,008 KB
testcase_18 AC 57 ms
50,300 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 55 ms
50,276 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 60 ms
50,356 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 54 ms
50,104 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 62 ms
50,624 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 54 ms
50,248 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 52 ms
50,112 KB
testcase_43 AC 57 ms
50,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main1 {
	
	static int n , c;
	static int ans = -1;
	static int[][][] memo;
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void solve (int nowPoint , int cost , int time) {
		for (int i = nowPoint + 1; i <= n; i++) {
			if (memo[nowPoint][i][0] == 0) continue;
			if (cost + memo[nowPoint][i][0] > c) continue;
			if (i != n) {
				solve(i , cost + memo[nowPoint][i][0] , time + memo[nowPoint][i][1]);
			} else {
				ans = ans == -1 ? time + memo[nowPoint][i][1] : Math.min(ans , time + memo[nowPoint][i][1]);
			}
		}
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		n = Integer.parseInt(br.readLine());
		c = Integer.parseInt(br.readLine());
		int v = Integer.parseInt(br.readLine());
		String[] line1 = br.readLine().split(" ");
		String[] line2 = br.readLine().split(" ");
		String[] line3 = br.readLine().split(" ");
		String[] line4 = br.readLine().split(" ");
		
		memo = new int[n + 1][n + 1][2];
		
		for (int i = 0; i < v; i++) {
			int s = Integer.parseInt(line1[i]);
			int t = Integer.parseInt(line2[i]);
			int y = Integer.parseInt(line3[i]);
			int m = Integer.parseInt(line4[i]);
			memo[s][t][0] = y;
			memo[s][t][1] = m;
		}
		
		solve(1,0,0);
		
		out(ans);
		
	}
}
0