結果

問題 No.1 道のショートカット
ユーザー uafr_csuafr_cs
提出日時 2015-04-29 23:14:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 247 ms / 5,000 ms
コード長 2,491 bytes
コンパイル時間 3,255 ms
コンパイル使用メモリ 80,436 KB
実行使用メモリ 46,056 KB
最終ジャッジ日時 2024-07-20 16:13:35
合計ジャッジ時間 12,044 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,088 KB
testcase_01 AC 133 ms
41,060 KB
testcase_02 AC 133 ms
41,444 KB
testcase_03 AC 139 ms
41,204 KB
testcase_04 AC 118 ms
40,252 KB
testcase_05 AC 133 ms
41,508 KB
testcase_06 AC 136 ms
41,400 KB
testcase_07 AC 150 ms
41,496 KB
testcase_08 AC 229 ms
45,612 KB
testcase_09 AC 212 ms
44,848 KB
testcase_10 AC 228 ms
45,852 KB
testcase_11 AC 236 ms
45,656 KB
testcase_12 AC 247 ms
45,904 KB
testcase_13 AC 236 ms
45,888 KB
testcase_14 AC 167 ms
41,780 KB
testcase_15 AC 133 ms
41,184 KB
testcase_16 AC 199 ms
42,440 KB
testcase_17 AC 138 ms
41,440 KB
testcase_18 AC 180 ms
41,992 KB
testcase_19 AC 177 ms
41,728 KB
testcase_20 AC 193 ms
42,568 KB
testcase_21 AC 187 ms
42,008 KB
testcase_22 AC 162 ms
41,676 KB
testcase_23 AC 238 ms
45,768 KB
testcase_24 AC 222 ms
45,512 KB
testcase_25 AC 200 ms
42,692 KB
testcase_26 AC 182 ms
42,204 KB
testcase_27 AC 238 ms
45,704 KB
testcase_28 AC 141 ms
41,404 KB
testcase_29 AC 229 ms
45,548 KB
testcase_30 AC 201 ms
42,840 KB
testcase_31 AC 218 ms
44,344 KB
testcase_32 AC 220 ms
44,728 KB
testcase_33 AC 213 ms
43,912 KB
testcase_34 AC 239 ms
46,056 KB
testcase_35 AC 222 ms
45,436 KB
testcase_36 AC 212 ms
45,820 KB
testcase_37 AC 219 ms
44,964 KB
testcase_38 AC 164 ms
41,684 KB
testcase_39 AC 198 ms
42,140 KB
testcase_40 AC 211 ms
43,112 KB
testcase_41 AC 180 ms
42,008 KB
testcase_42 AC 136 ms
41,432 KB
testcase_43 AC 135 ms
41,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map.Entry;
import java.util.PriorityQueue;
import java.util.Scanner;


public class Main {
	
	public static class State implements Comparable<State> {
		int node, cost, time;

		public State(int node, int cost, int time) {
			super();
			this.node = node;
			this.cost = cost;
			this.time = time;
		}

		public int compareTo(State o) {
			return Integer.compare(this.time, o.time);
		}
	}
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int C = sc.nextInt();
		final int V = sc.nextInt();
		
		int[] S = new int[V];
		for(int i = 0; i < V; i++){
			S[i] = sc.nextInt() - 1;
		}
		
		int[] T = new int[V];
		for(int i = 0; i < V; i++){
			T[i] = sc.nextInt() - 1;
		}
		
		int[] Y = new int[V];
		for(int i = 0; i < V; i++){
			Y[i] = sc.nextInt();
		}
		
		int[] M = new int[V];
		for(int i = 0; i < V; i++){
			M[i] = sc.nextInt();
		}
		
		ArrayList<HashMap<Integer, HashMap<Integer, Integer>>> adj = new ArrayList<HashMap<Integer, HashMap<Integer, Integer>>>();
		for(int i = 0; i < N; i++){
			adj.add(new HashMap<Integer, HashMap<Integer, Integer>>());
		}
		
		for(int i = 0; i < V; i++){
			if(!adj.get(S[i]).containsKey(T[i])){
				adj.get(S[i]).put(T[i], new HashMap<Integer, Integer>());
			}
			
			adj.get(S[i]).get(T[i]).put(Y[i], Math.min(M[i], adj.get(S[i]).get(T[i]).containsKey(Y[i]) ? adj.get(S[i]).get(T[i]).get(Y[i]) : Integer.MAX_VALUE));
		}
		
		boolean[][] visited = new boolean[N][C + 1];
		PriorityQueue<State> queue = new PriorityQueue<State>();
		queue.add(new State(0, 0, 0));
		
		while(!queue.isEmpty()){
			final State state = queue.poll();
			
			if(visited[state.node][state.cost]){
				continue;
			}else{
				visited[state.node][state.cost] = true;
			}
			
			if(state.node == N - 1){
				System.out.println(state.time);
				return;
			}
			
			for(Entry<Integer, HashMap<Integer, Integer>> entrys : adj.get(state.node).entrySet()){
				final int next = entrys.getKey();
				
				for(Entry<Integer, Integer> entry : entrys.getValue().entrySet()){
					final int next_cost = state.cost + entry.getKey();
					final int next_time = state.time + entry.getValue();
				
					if(next_cost > C){
						continue;
					}else if(visited[next][next_cost]){
						continue;
					}
				
					queue.add(new State(next, next_cost, next_time));
				}
			}
		}
		
		System.out.println(-1);
	}
	
}
0