結果
問題 | No.17 2つの地点に泊まりたい |
ユーザー | holeguma |
提出日時 | 2015-08-08 18:07:58 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,303 bytes |
コンパイル時間 | 2,069 ms |
コンパイル使用メモリ | 82,076 KB |
実行使用メモリ | 52,272 KB |
最終ジャッジ日時 | 2024-07-18 05:57:59 |
合計ジャッジ時間 | 4,839 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
50,496 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 68 ms
50,856 KB |
testcase_04 | AC | 73 ms
50,484 KB |
testcase_05 | AC | 120 ms
52,052 KB |
testcase_06 | AC | 91 ms
52,024 KB |
testcase_07 | AC | 93 ms
51,688 KB |
testcase_08 | AC | 129 ms
51,908 KB |
testcase_09 | AC | 129 ms
51,924 KB |
testcase_10 | AC | 84 ms
51,288 KB |
testcase_11 | AC | 105 ms
52,272 KB |
testcase_12 | AC | 51 ms
50,640 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | WA | - |
testcase_23 | AC | 94 ms
52,168 KB |
testcase_24 | AC | 91 ms
52,156 KB |
testcase_25 | AC | 52 ms
50,520 KB |
testcase_26 | AC | 115 ms
52,160 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Arrays; import java.util.Comparator; import java.util.PriorityQueue; import java.util.StringTokenizer; class Main{ static final int INF=Integer.MAX_VALUE/2; static final PrintWriter out=new PrintWriter(System.out); static class Node{ int d; int v; Node(int d,int v){ this.d=d; this.v=v; } static final Comparator<Node> DISTANCE_ORDER=new DistanceOrderComparator(); public static class DistanceOrderComparator implements Comparator<Node>{ public int compare(Node n1,Node n2){ return (n1.d>n2.d)?1:(n1.d<n2.d)?-1:0; } } } static class Edge{ int to; int cost; Edge(int to,int cost){ this.to=to; this.cost=cost; } } static class MyArrayList extends ArrayList<Edge>{} public static void main(String[] args) throws IOException{ BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String line=""; while((line=br.readLine())!=null&&!line.isEmpty()){ int n=Integer.parseInt(line); int[] s=new int[n]; int[][] d=new int[n][n]; for(int i=0;i<n;i++) s[i]=Integer.parseInt(br.readLine()); int m=Integer.parseInt(br.readLine()); MyArrayList[] array=new MyArrayList[m]; for(int i=0;i<m;i++) array[i]=new MyArrayList(); for(int i=0;i<m;i++){ line=br.readLine(); StringTokenizer st=new StringTokenizer(line); int a=Integer.parseInt(st.nextToken()); int b=Integer.parseInt(st.nextToken()); int c=Integer.parseInt(st.nextToken()); array[a].add(new Edge(b,c)); array[b].add(new Edge(a,c)); } for(int i=0;i<n;i++) dijkstra(i,d,array); long ans=Long.MAX_VALUE; for(int i=1;i<n-1;i++){ for(int j=1;j<n-1;j++){ if(i==j) continue; ans=Math.min(ans,d[0][i]+s[i]+d[i][j]+s[j]+d[j][n-1]); } } out.println(ans); out.flush(); } } private static void dijkstra(int s,int[][] d,MyArrayList[] array){ PriorityQueue<Node> pque=new PriorityQueue<Node>(1,Node.DISTANCE_ORDER); Arrays.fill(d[s],INF); d[s][s]=0; pque.offer(new Node(0,s)); while(!pque.isEmpty()){ Node n=pque.poll(); int v=n.v; ArrayList<Edge> list=array[v]; if(d[s][v]<n.d||list.size()==0) continue; for(int i=0;i<list.size();i++){ Edge e=list.get(i); int to=e.to; int dv=d[s][v]; int cost=e.cost; if(d[s][to]>dv+cost){ d[s][to]=dv+cost; pque.offer(new Node(d[s][to],to)); } } } } }