結果

問題 No.124 門松列(3)
ユーザー ぴろずぴろず
提出日時 2015-01-11 23:43:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 331 ms / 5,000 ms
コード長 2,398 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 78,404 KB
実行使用メモリ 67,928 KB
最終ジャッジ日時 2024-06-13 04:15:51
合計ジャッジ時間 8,952 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
62,640 KB
testcase_01 AC 129 ms
54,156 KB
testcase_02 AC 129 ms
54,500 KB
testcase_03 AC 327 ms
67,532 KB
testcase_04 AC 331 ms
67,708 KB
testcase_05 AC 324 ms
67,816 KB
testcase_06 AC 128 ms
54,052 KB
testcase_07 AC 133 ms
54,072 KB
testcase_08 AC 129 ms
53,912 KB
testcase_09 AC 109 ms
52,980 KB
testcase_10 AC 121 ms
54,244 KB
testcase_11 AC 116 ms
52,636 KB
testcase_12 AC 127 ms
53,840 KB
testcase_13 AC 129 ms
53,764 KB
testcase_14 AC 139 ms
54,124 KB
testcase_15 AC 132 ms
54,192 KB
testcase_16 AC 184 ms
56,488 KB
testcase_17 AC 146 ms
54,212 KB
testcase_18 AC 132 ms
53,684 KB
testcase_19 AC 152 ms
54,080 KB
testcase_20 AC 153 ms
54,268 KB
testcase_21 AC 138 ms
54,136 KB
testcase_22 AC 156 ms
54,276 KB
testcase_23 AC 246 ms
60,172 KB
testcase_24 AC 265 ms
65,080 KB
testcase_25 AC 263 ms
64,816 KB
testcase_26 AC 217 ms
57,512 KB
testcase_27 AC 200 ms
56,584 KB
testcase_28 AC 330 ms
67,928 KB
testcase_29 AC 317 ms
67,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no124;

import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	static int[] di = {1,0,-1,0};
	static int[] dj = {0,1,0,-1};
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int w = sc.nextInt();
		int h = sc.nextInt();
		int[][] map = new int[h][w];
		for(int i=0;i<h;i++) {
			for(int j=0;j<w;j++) {
				map[i][j] = sc.nextInt();
			}
		}
		Graph g = new Graph(w*h*10);
		for(int i=0;i<h;i++) {
			for(int j=0;j<w;j++) {
				for(int bef=0;bef<=9;bef++) {
					for(int dir=0;dir<4;dir++) {
						int ni = i + di[dir];
						int nj = j + dj[dir];
						if (ni < 0 || ni >= h || nj < 0 || nj >= w) {
							continue;
						}
						if (isKasomatsuSequence(bef, map[i][j], map[ni][nj])) {
							g.addEdge(i + j * h + bef * h * w, ni + nj * h + map[i][j] * h * w, 1);
						}
					}
				}
			}
		}
		int[] dist = g.minDistQueue(0);
		int ans = Graph.INF;
		for(int i=0;i<=9;i++) {
			ans = Math.min(ans, dist[h-1 + (w-1) * h + i * h * w]);
		}
		if (ans == Graph.INF) {
			System.out.println(-1);
		}else{
			System.out.println(ans);
		}
	}

	public static boolean isKasomatsuSequence(int a,int b,int c) {
		if (a == 0) {
			return true;
		}
		if (a == b || a == c || b == c) {
			return false;
		}
		return b < a && b < c || b > a && b > c;
	}

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

	//O(E) all cost is 0 or 1
	public int[] minDistQueue(int s) {
		int[] d = new int[n];
		Arrays.fill(d, INF);
		ArrayDeque<Integer> q = new ArrayDeque<Integer>();
		q.add(s);
		d[s] = 0;
		while(!q.isEmpty()) {
			int v = q.pollFirst();
			for(Edge e:graph[v]) {
				int u = e.to;
				if (d[v] + e.cost < d[u]) {
					d[u] = d[v] + e.cost;
					if (e.cost == 0) {
						q.addFirst(u);
					}else{
						q.addLast(u);
					}
				}
			}
		}
		return d;
	}

	class Edge {
		int to;
		int cost;
		public Edge(int to,int cost) {
			this.to = to;
			this.cost = cost;
		}
	}
}
0