結果

問題 No.1 道のショートカット
ユーザー kou6839kou6839
提出日時 2014-11-08 01:00:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,585 bytes
コンパイル時間 1,937 ms
コンパイル使用メモリ 78,936 KB
実行使用メモリ 57,636 KB
最終ジャッジ日時 2024-07-08 03:35:02
合計ジャッジ時間 10,514 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,880 KB
testcase_01 AC 118 ms
54,188 KB
testcase_02 AC 120 ms
54,176 KB
testcase_03 AC 134 ms
54,172 KB
testcase_04 AC 123 ms
54,028 KB
testcase_05 AC 120 ms
54,136 KB
testcase_06 AC 126 ms
53,920 KB
testcase_07 AC 135 ms
54,216 KB
testcase_08 AC 190 ms
57,636 KB
testcase_09 AC 200 ms
56,788 KB
testcase_10 AC 191 ms
57,384 KB
testcase_11 AC 208 ms
57,440 KB
testcase_12 WA -
testcase_13 AC 252 ms
57,420 KB
testcase_14 WA -
testcase_15 RE -
testcase_16 WA -
testcase_17 RE -
testcase_18 AC 149 ms
54,580 KB
testcase_19 AC 157 ms
54,244 KB
testcase_20 AC 168 ms
54,596 KB
testcase_21 AC 157 ms
54,488 KB
testcase_22 AC 137 ms
53,940 KB
testcase_23 AC 199 ms
57,468 KB
testcase_24 AC 191 ms
57,616 KB
testcase_25 AC 171 ms
42,668 KB
testcase_26 AC 158 ms
42,676 KB
testcase_27 AC 179 ms
45,436 KB
testcase_28 RE -
testcase_29 AC 199 ms
45,660 KB
testcase_30 AC 166 ms
42,836 KB
testcase_31 AC 187 ms
44,612 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 186 ms
45,516 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 139 ms
42,012 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 RE -
testcase_43 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
class miti{
	int now;
	int to;
	int cost;
	int time;
	miti(int now,int to,int cost,int time){
		this.now = now;
		this.to = to;
		this.cost=cost;
		this.time = time;
	}
}
class mitiComparator implements Comparator<miti>{

	@Override
	public int compare(miti o1, miti o2) {
		if(o1.now>o2.now){
			return 1;
		}else if(o1.now==o2.now){
			return 0;
		}else{
			return -1;
		}
	}
	
}
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();
		}
		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();
		}
		miti[] miti1=new miti[V];
		for(int i=0;i<V;i++){
			miti1[i]=new miti(S[i],T[i],Y[i],M[i]);
		}
		Arrays.sort(miti1,new mitiComparator());

		int[] sumc =new int[V+1];
		int[] sumt = new int[V+1];
		for(int i=2;i<=V;i++){
			sumc[i]=Integer.MAX_VALUE;
			sumt[i]=Integer.MAX_VALUE;
		}
		for(miti a:miti1){
			if(sumc[a.now]==Integer.MAX_VALUE) continue;
			if(sumc[a.now]+a.cost<=C){
			sumc[a.to]=Math.min(sumc[a.to], sumc[a.now]+a.cost);
			}else{
				continue;
			}
			sumt[a.to]=Math.min(sumt[a.to], sumt[a.now]+a.time);
		}
		if(sumc[N]<Integer.MAX_VALUE){
			System.out.println(sumt[N]);
		}else{
			System.out.println(-1);
		}
	}
}
0