結果

問題 No.126 2基のエレベータ
ユーザー ぴろずぴろず
提出日時 2015-01-14 00:16:54
言語 Java19
(openjdk 21)
結果
AC  
実行時間 793 ms / 5,000 ms
コード長 2,479 bytes
コンパイル時間 2,336 ms
コンパイル使用メモリ 81,652 KB
実行使用メモリ 198,596 KB
最終ジャッジ日時 2023-08-01 01:58:30
合計ジャッジ時間 27,780 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 748 ms
196,324 KB
testcase_01 AC 752 ms
196,460 KB
testcase_02 AC 753 ms
196,572 KB
testcase_03 AC 761 ms
196,684 KB
testcase_04 AC 776 ms
196,212 KB
testcase_05 AC 774 ms
196,548 KB
testcase_06 AC 777 ms
196,912 KB
testcase_07 AC 775 ms
196,328 KB
testcase_08 AC 773 ms
196,456 KB
testcase_09 AC 777 ms
196,516 KB
testcase_10 AC 766 ms
196,436 KB
testcase_11 AC 776 ms
196,332 KB
testcase_12 AC 752 ms
196,388 KB
testcase_13 AC 768 ms
196,688 KB
testcase_14 AC 762 ms
196,492 KB
testcase_15 AC 763 ms
196,360 KB
testcase_16 AC 746 ms
196,332 KB
testcase_17 AC 747 ms
196,448 KB
testcase_18 AC 733 ms
196,224 KB
testcase_19 AC 746 ms
196,244 KB
testcase_20 AC 755 ms
196,348 KB
testcase_21 AC 744 ms
196,568 KB
testcase_22 AC 749 ms
196,444 KB
testcase_23 AC 750 ms
196,336 KB
testcase_24 AC 752 ms
198,596 KB
testcase_25 AC 778 ms
196,384 KB
testcase_26 AC 786 ms
196,240 KB
testcase_27 AC 793 ms
196,716 KB
testcase_28 AC 766 ms
196,252 KB
testcase_29 AC 767 ms
196,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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-k));
						}
					}
				}
			}
		}
		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);
		}
	}
}
0