結果
問題 | No.126 2基のエレベータ |
ユーザー | ぴろず |
提出日時 | 2015-01-14 00:03:16 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,479 bytes |
コンパイル時間 | 2,609 ms |
コンパイル使用メモリ | 78,604 KB |
実行使用メモリ | 197,124 KB |
最終ジャッジ日時 | 2024-06-22 05:49:21 |
合計ジャッジ時間 | 29,641 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 827 ms
195,132 KB |
testcase_02 | AC | 832 ms
195,136 KB |
testcase_03 | AC | 827 ms
195,132 KB |
testcase_04 | AC | 839 ms
195,212 KB |
testcase_05 | AC | 836 ms
194,904 KB |
testcase_06 | AC | 826 ms
195,144 KB |
testcase_07 | AC | 830 ms
195,224 KB |
testcase_08 | AC | 829 ms
195,184 KB |
testcase_09 | AC | 831 ms
195,244 KB |
testcase_10 | AC | 857 ms
195,020 KB |
testcase_11 | AC | 842 ms
195,220 KB |
testcase_12 | WA | - |
testcase_13 | AC | 842 ms
195,084 KB |
testcase_14 | AC | 846 ms
195,220 KB |
testcase_15 | AC | 845 ms
195,172 KB |
testcase_16 | WA | - |
testcase_17 | AC | 848 ms
195,220 KB |
testcase_18 | AC | 854 ms
195,100 KB |
testcase_19 | AC | 847 ms
195,000 KB |
testcase_20 | AC | 855 ms
194,908 KB |
testcase_21 | AC | 844 ms
195,224 KB |
testcase_22 | AC | 869 ms
195,132 KB |
testcase_23 | AC | 851 ms
195,220 KB |
testcase_24 | AC | 860 ms
195,124 KB |
testcase_25 | AC | 856 ms
194,908 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
package no126; import java.util.ArrayList; import java.util.Arrays; import java.util.PriorityQueue; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); System.out.println(solve(a,b,c)); } public static int solve(int a,int b,int s) { Graph g = new Graph(101*101*101); for(int i=0;i<=100;i++) { for(int j=1;j<=100;j++) { for(int k=1;k<=100;k++) { int la = Math.abs(i-k); int lb = Math.abs(j-k); if (k == 1) { g.addEdge(map(i, j, k), map(0, 1, 0), la + 1); }else{ if (la <= lb) { g.addEdge(map(i, j, k), map(0, j, 0), la + k); }else{ g.addEdge(map(i, j, k), map(i, 1, 1), lb + (k-1)); g.addEdge(map(i, j, k), map(i, i, i), lb + Math.abs(i-j)); } } } } } int[] dist = g.minDistDijkstra(map(a,b,s)); int ans = Graph.INF; for(int i=1;i<=100;i++) { ans = Math.min(ans,dist[map(0, i, 0)]); } return ans; } private static int map(int a,int b,int s) { return a + b * 101 + s * 101 * 101; } } class Graph { public static final int INF = 1<<29; int n; ArrayList<Edge>[] graph; @SuppressWarnings("unchecked") public Graph(int n) { this.n = n; this.graph = new ArrayList[n]; for(int i=0;i<n;i++) { graph[i] = new ArrayList<Edge>(); } } public void addBidirectionalEdge(int from,int to,int cost) { addEdge(from,to,cost); addEdge(to,from,cost); } public void addEdge(int from,int to,int cost) { graph[from].add(new Edge(to, cost)); } //dijkstra O(ElogV) public int[] minDistDijkstra(int s) { int[] dist = new int[n]; Arrays.fill(dist, INF); dist[s] = 0; PriorityQueue<Node> q = new PriorityQueue<Node>(); q.offer(new Node(0, s)); while(!q.isEmpty()) { Node node = q.poll(); int v = node.id; if (dist[v] < node.dist) { continue; } for(Edge e:graph[v]) { if (dist[e.to] > dist[v] + e.cost) { dist[e.to] = dist[v] + e.cost; q.add(new Node(dist[e.to], e.to)); } } } return dist; } class Edge { int to; int cost; public Edge(int to,int cost) { this.to = to; this.cost = cost; } } class Node implements Comparable<Node>{ int dist; int id; public Node(int dist,int i) { this.dist = dist; this.id = i; } public int compareTo(Node o) { return (this.dist < o.dist) ? -1 : ((this.dist == o.dist) ? 0 : 1); } } }