結果
問題 | No.160 最短経路のうち辞書順最小 |
ユーザー | 37zigen |
提出日時 | 2016-05-01 12:23:25 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,517 bytes |
コンパイル時間 | 2,163 ms |
コンパイル使用メモリ | 90,504 KB |
実行使用メモリ | 49,724 KB |
最終ジャッジ日時 | 2024-10-05 00:31:57 |
合計ジャッジ時間 | 10,684 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 153 ms
42,752 KB |
testcase_01 | AC | 141 ms
43,104 KB |
testcase_02 | AC | 143 ms
43,052 KB |
testcase_03 | AC | 156 ms
43,352 KB |
testcase_04 | AC | 283 ms
48,196 KB |
testcase_05 | AC | 358 ms
49,148 KB |
testcase_06 | AC | 414 ms
49,204 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 250 ms
47,268 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 247 ms
48,196 KB |
testcase_20 | AC | 259 ms
46,468 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 199 ms
45,104 KB |
testcase_28 | WA | - |
testcase_29 | AC | 189 ms
43,856 KB |
ソースコード
package yukicoder; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.PriorityQueue; import java.util.Scanner; public class Main{ public static void main(String[] args)throws Exception{ new Main().solve(); } void solve(){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int m=sc.nextInt(); int s=sc.nextInt(); int g=sc.nextInt(); Dijkstra dj=new Dijkstra(n); for(int i=0;i<m;i++){ int from=sc.nextInt(); int to=sc.nextInt(); int cost=sc.nextInt(); dj.addEdge(from, to, cost); dj.addEdge(to, from, cost); } int[] prv=dj.getShortestPath(s, g); String ans=""; ans+=g; int f=g; while(true){ int a=prv[f]; f=a; if(f!=-1){ ans=a+" "+ans; if(a==s)break; } } System.out.println(ans); // tr(prv); } void tr(Object...o){System.out.println(Arrays.deepToString(o));} class Dijkstra{ int n; long[] d; int s; int[] prv; List<Edge>[]edges; PriorityQueue<Vertice> pq; final long INF=Long.MAX_VALUE/4; Dijkstra(int n){ this.n=n; d=new long[n]; prv=new int[n]; Arrays.fill(prv, -1); @SuppressWarnings("unchecked") List<Edge>[]edges=new List[n]; this.edges=edges; for(int i=0;i<n;i++){ edges[i]=new ArrayList<Edge>(); } s=-1; } int[] getShortestPath(int i,int j){ if(i!=s){ s=i; Arrays.fill(d, INF); d[i]=0; pq=new PriorityQueue<Vertice>(); pq.add(new Vertice(i,d[i])); while(!pq.isEmpty()){ Vertice u=pq.poll(); if(d[u.me]<u.cost){ continue;//skip old vertex } for(int ii=0;ii<edges[u.me].size();ii++){ Edge e=edges[u.me].get(ii); if(d[e.from]!=INF&&e.cost+d[e.from]<d[e.to]){ d[e.to]=e.cost+d[e.from]; pq.add(new Vertice(e.to,d[e.to])); prv[e.to]=e.from; }else if(d[e.to]==e.cost+d[e.from]&&prv[e.to]>e.from){ prv[e.to]=e.from; } } } s=i; } // return d[j]; return prv; } void addEdge(int from,int to,long cost){ edges[from].add(new Edge(from,to,cost)); } } class Edge{ int from; int to; long cost; Edge(int i,int j,long cost){ this.from=i; this.to=j; this.cost=cost; } } class Vertice implements Comparable<Vertice>{ int me; long cost; Vertice(int me,long cost){ this.me=me; this.cost=cost; } @Override public int compareTo(Vertice o){ // return Long.compare(this.cost, o.cost); return this.cost>o.cost?1:this.cost<o.cost?-1:this.me>o.me?1:this.me<o.me?-1:0; } } }