結果

問題 No.971 いたずらっ子
ユーザー k_6101k_6101
提出日時 2020-01-17 22:56:42
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 6,600 bytes
コンパイル時間 2,357 ms
コンパイル使用メモリ 92,152 KB
実行使用メモリ 864,176 KB
最終ジャッジ日時 2023-09-08 06:22:19
合計ジャッジ時間 8,527 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.InputStream;
import java.io.PrintWriter;
import java.lang.reflect.Array;
import java.math.BigDecimal;
import java.math.MathContext;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.Deque;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.PriorityQueue;
import java.util.Queue;
import java.util.Random;
import java.util.Scanner;
import java.util.Set;
import java.util.Stack;
import java.util.TreeMap;
import java.util.TreeSet;

import static java.util.Comparator.*;

public class Main {
    public static void main(String[] args) {
        PrintWriter out = new PrintWriter(System.out);
        Solver solver = new Solver(System.in, out);
        solver.solve();
        out.close();
    }
}
class Solver {
	Scanner sc;
	PrintWriter out;
    public Solver(InputStream in, PrintWriter out) {
    	sc = new Scanner(in);
    	this.out = out;
    }
    // ======================================================================
    // 2 <= H, W <= 50  : H = 行数  W = 列数
    // C(y, x) :  . = 白(道)  # = 黒(壁)
    //
    // (0,0) --> (H, W) に行く。白(道)を黒(壁)に最大いくつ変えられるか?
    // 元々たどり着けない場合は -1 とする
    //
    // 最短経路を 幅優先探索(BFS) で数えて、元の白(道)の数から引く
    //
	int[] dx = { 0, 1 };
	int[] dy = { 1, 0 };
	
	int H, W, N;
	int[][] len = null;
	char[][] c = null;											// 地図
	Queue<PP> que = new ArrayDeque<>();							// キュー
	
	// スタートとゴールの位置を受け取る
	void calc2(int s_h, int s_w, int g_h, int g_w) {
		int h, w, n_h, n_w;
		PP p = null;
    	for(int i=0; i < H; i++) {								// 値の初期化
    		Arrays.fill(len[i], -1);
    	}
		len[s_h][s_w] = 0;										// スタートの値が 0
		que.clear();
		que.add(new PP(s_h, s_w));								// スタートをキューに入れる
		while(que.peek() != null) {
			p = que.poll();
			h = p.getKey();
			w = p.getVal();
//    			out.println("  y = " + h + "  x = " + w);
			if(h == g_h && w == g_w) {							// ゴールかの判定
//        			out.println(" goal  -->   f(" + h + ", " + w + ") = " + f[h][w]);
				break;
			}
			for(int i=0; i < 2; i++) {
				n_h = h + dy[i];
				n_w = w + dx[i];
				if(n_h < 0 || n_h >= H || n_w < 0 || n_w >= W) {
					continue;
				}
				if(len[n_h][n_w] == -1) {						// まだ 通っていなければ
					que.add(new PP(n_h, n_w));					// キューに追加する
					len[n_h][n_w] = len[h][w] + 1;				// 何番目かを設定する
				}
//					out.println("f[" + n_h + "][" + n_w + "] = " + f[n_h][n_w]);
			}
		}
	}
	int INF = 1000000000;
	int[][] f = null;											// 何番目かを保存(通ったかどうかのフラグも兼ねる)
	// スタートとゴールの位置を受け取る
	int calc(int s_h, int s_w, int g_h, int g_w) {
		int h, w, n_h, n_w;
		PP p = null;
    	for(int i=0; i < H; i++) {								// 値の初期化
    		Arrays.fill(f[i], INF);
    	}
		f[s_h][s_w] = 0;										// スタートの値が 0
		que.clear();
		que.add(new PP(s_h, s_w));								// スタートをキューに入れる
		while(que.peek() != null) {
			p = que.poll();
			h = p.getKey();
			w = p.getVal();
//    		out.println("  h = " + h + "  w = " + w);
			if(h > 0 && w > 0) {
				f[h][w] = Math.min(f[h][w], Math.min(f[h-1][w]+1, f[h][w-1]+1));
			} else if(h > 0 && w == 0) {
				f[h][w] = Math.min(f[h][w], f[h-1][w]+1);
			} else if(h == 0 && w > 0) {
				f[h][w] = Math.min(f[h][w], f[h][w-1]+1);
			}
//			out.println("f[" + h + "][" + w + "] = " + f[h][w]);
			if(h == g_h && w == g_w) {							// ゴールかの判定
//        		out.println(" goal  -->   f(" + h + ", " + w + ") = " + f[h][w]);
				break;
			}
			if(c[h][w] == 'k')	f[h][w] += len[h][w];
			for(int i=0; i < 2; i++) {
				n_h = h + dy[i];
				n_w = w + dx[i];
				if(n_h < 0 || n_h >= H || n_w < 0 || n_w >= W) {
					continue;
				}
				if(f[n_h][n_w] == INF) {							// まだ 通っていなければ
					que.add(new PP(n_h, n_w));					// キューに追加する
//					if(c[n_h][n_w] != 'k')
//						f[n_h][n_w] = f[h][w] + 1;					// 何番目かを設定する
//					else
//						f[n_h][n_w] = f[h][w] + 1 + len[n_h][n_w];
				}
//					out.println("f[" + n_h + "][" + n_w + "] = " + f[n_h][n_w]);
			}
		}
		return f[g_h][g_w];										// ゴールが何番目を返す
	}
	public void solve() {
		H = ni();						// 縦
		W = ni();						// 横
    	c = new char[H][];				// 地図
    	f = new int[H][W];				// 何番目かを保存(通ったかどうかのフラグも兼ねる)
    	for(int i=0; i < H; i++) {		// 道の情報
    		c[i] = ns().toCharArray();
    	}
    	len = new int[H][W];
    	calc2(0, 0, H-1, W-1);
    	long ans = calc(0, 0, H-1, W-1);
    	out.println(ans);
    }
    // Set に入れるなら PPKEY を使う!
    static class PP{
    	public int key, val;
    	public PP(int key, int val) {
    		this.key = key;
    		this.val = val;
    	}
		public int getKey() {
			return key;
		}
		public void setKey(int key) {
			this.key = key;
		}
		public int getVal() {
			return val;
		}
		public void setVal(int val) {
			this.val = val;
		}
    }
    // ------------------------------------------
    // 入力
    // ------------------------------------------
    public int ni() {
    	return sc.nextInt();
    }
    public long nl() {
    	return sc.nextLong();
    }
    public String ns() {
    	return sc.next();
    }
    public char[] nc() {
    	return sc.next().toCharArray();
    }
    public int[] ndi(int N) {
    	int[] ans = new int[N];
    	for (int i = 0; i < N; i++) {
			ans[i] = ni();
		}
    	return ans;
    }
    public long[] ndl(int N) {
    	long[] ans = new long[N];
    	for (int i = 0; i < N; i++) {
			ans[i] = nl();
		}
    	return ans;
    }
    public String[] nds(int N) {
    	String[] ans = new String[N];
    	for (int i = 0; i < N; i++) {
			ans[i] = ns();
		}
    	return ans;
    }
    public char[][] ndc(int N) {
    	char[][] ans = new char[N][];
    	for (int i = 0; i < N; i++) {
			ans[i] = nc();
		}
    	return ans;
    }
    public int[][] nddi(int N, int S) {
    	int[][] ans = new int[N][S];
    	for (int i = 0; i < N; i++) {
			for (int j = 0; j < S; j++) {
				ans[i][j] = ni();
			}
		}
    	return ans;
    }
}
0