結果
問題 | No.1 道のショートカット |
ユーザー | ria_rai |
提出日時 | 2016-04-27 06:41:23 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 233 ms / 5,000 ms |
コード長 | 1,879 bytes |
コンパイル時間 | 2,299 ms |
コンパイル使用メモリ | 78,316 KB |
実行使用メモリ | 45,980 KB |
最終ジャッジ日時 | 2024-07-20 16:23:28 |
合計ジャッジ時間 | 11,700 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
41,212 KB |
testcase_01 | AC | 136 ms
41,292 KB |
testcase_02 | AC | 136 ms
41,420 KB |
testcase_03 | AC | 143 ms
41,128 KB |
testcase_04 | AC | 135 ms
41,600 KB |
testcase_05 | AC | 137 ms
41,240 KB |
testcase_06 | AC | 141 ms
41,364 KB |
testcase_07 | AC | 146 ms
41,556 KB |
testcase_08 | AC | 221 ms
45,896 KB |
testcase_09 | AC | 207 ms
44,376 KB |
testcase_10 | AC | 224 ms
45,464 KB |
testcase_11 | AC | 223 ms
45,428 KB |
testcase_12 | AC | 227 ms
45,716 KB |
testcase_13 | AC | 227 ms
45,896 KB |
testcase_14 | AC | 185 ms
41,632 KB |
testcase_15 | AC | 135 ms
41,412 KB |
testcase_16 | AC | 200 ms
42,676 KB |
testcase_17 | AC | 135 ms
41,184 KB |
testcase_18 | AC | 166 ms
41,848 KB |
testcase_19 | AC | 182 ms
41,740 KB |
testcase_20 | AC | 188 ms
42,628 KB |
testcase_21 | AC | 186 ms
41,884 KB |
testcase_22 | AC | 157 ms
41,656 KB |
testcase_23 | AC | 233 ms
45,980 KB |
testcase_24 | AC | 229 ms
45,712 KB |
testcase_25 | AC | 194 ms
42,796 KB |
testcase_26 | AC | 188 ms
42,156 KB |
testcase_27 | AC | 215 ms
45,800 KB |
testcase_28 | AC | 141 ms
41,344 KB |
testcase_29 | AC | 229 ms
45,864 KB |
testcase_30 | AC | 196 ms
42,992 KB |
testcase_31 | AC | 212 ms
44,192 KB |
testcase_32 | AC | 206 ms
44,600 KB |
testcase_33 | AC | 208 ms
44,128 KB |
testcase_34 | AC | 229 ms
45,836 KB |
testcase_35 | AC | 223 ms
45,760 KB |
testcase_36 | AC | 216 ms
45,332 KB |
testcase_37 | AC | 215 ms
44,540 KB |
testcase_38 | AC | 167 ms
41,508 KB |
testcase_39 | AC | 183 ms
41,888 KB |
testcase_40 | AC | 196 ms
42,892 KB |
testcase_41 | AC | 179 ms
42,168 KB |
testcase_42 | AC | 133 ms
41,452 KB |
testcase_43 | AC | 135 ms
41,212 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner cin = new Scanner(System.in); int N = cin.nextInt(); int C = cin.nextInt(); int V = cin.nextInt(); ArrayList<List<Edge>> graph = new ArrayList<List<Edge>>(); for(int i = 0; i < N ; i++)graph.add(new ArrayList<Edge>()); int S[] = new int[V],T[] = new int[V] , Y[] = new int[V], M[] = new int[V]; int arr[][] = {S,T,Y,M}; for(int[] v:arr) for(int i = 0 ; i < V ; i++) v[i] = cin.nextInt(); for(int i = 0 ; i < V ; i++ ){ graph.get(S[i]-1).add(new Edge(T[i]-1,M[i],Y[i])); } System.out.println(Dijkstra(graph,0,N-1,C)); } public static class Edge implements Comparable{ int weight ; int dst; int money; Edge(int dst , int weight,int money){ this.weight = weight; this.dst = dst; this.money = money; } @Override public int compareTo(Object obj){ try{ Edge e = (Edge)obj ; if(this.weight > e.weight)return 1 ; else if(this.weight < e.weight)return -1; else return 0; }catch(ClassCastException e){ //ignore } return 0 ; } } static int Dijkstra(ArrayList<List<Edge>> graph, int src,int dst,int C){ PriorityQueue<Edge> qu = new PriorityQueue<Edge>(); int N = graph.size(); qu.add(new Edge(src,0,0)); int visited[][] = new int[N][C+1]; for(int[] v : visited)Arrays.fill(v, 1<<29); while(!qu.isEmpty()){ Edge e = qu.poll(); if(e.dst == dst) return (int)e.weight; if(e.weight > visited[e.dst][e.money])continue; visited[e.dst][e.money] = e.weight; List<Edge> nxt = graph.get(e.dst); for(Edge next :nxt){ if(next.money + e.money > C)continue; if(visited[next.dst][next.money+e.money] > next.weight + e.weight ){ qu.add(new Edge(next.dst,next.weight+e.weight,next.money+e.money)); } } } return -1; } }