結果

問題 No.323 yuki国
ユーザー ぴろずぴろず
提出日時 2015-12-15 20:33:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 318 ms / 5,000 ms
コード長 1,441 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 78,616 KB
実行使用メモリ 59,520 KB
最終ジャッジ日時 2024-06-28 12:14:25
合計ジャッジ時間 11,376 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,756 KB
testcase_01 AC 130 ms
53,848 KB
testcase_02 AC 132 ms
53,680 KB
testcase_03 AC 139 ms
53,612 KB
testcase_04 AC 134 ms
54,068 KB
testcase_05 AC 131 ms
53,552 KB
testcase_06 AC 131 ms
53,804 KB
testcase_07 AC 133 ms
54,192 KB
testcase_08 AC 271 ms
58,636 KB
testcase_09 AC 276 ms
58,900 KB
testcase_10 AC 132 ms
53,840 KB
testcase_11 AC 135 ms
53,868 KB
testcase_12 AC 133 ms
53,928 KB
testcase_13 AC 260 ms
58,876 KB
testcase_14 AC 250 ms
58,808 KB
testcase_15 AC 261 ms
58,660 KB
testcase_16 AC 264 ms
59,068 KB
testcase_17 AC 296 ms
58,888 KB
testcase_18 AC 166 ms
54,072 KB
testcase_19 AC 221 ms
58,736 KB
testcase_20 AC 238 ms
56,596 KB
testcase_21 AC 318 ms
59,064 KB
testcase_22 AC 317 ms
58,624 KB
testcase_23 AC 307 ms
58,932 KB
testcase_24 AC 266 ms
58,956 KB
testcase_25 AC 270 ms
59,520 KB
testcase_26 AC 223 ms
56,940 KB
testcase_27 AC 209 ms
56,884 KB
testcase_28 AC 298 ms
59,172 KB
testcase_29 AC 284 ms
59,088 KB
testcase_30 AC 133 ms
54,464 KB
testcase_31 AC 128 ms
53,952 KB
testcase_32 AC 134 ms
53,856 KB
testcase_33 AC 134 ms
53,776 KB
testcase_34 AC 120 ms
54,776 KB
testcase_35 AC 130 ms
53,548 KB
testcase_36 AC 127 ms
53,944 KB
testcase_37 AC 130 ms
53,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiguni;

import java.util.ArrayDeque;
import java.util.Queue;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		int w = sc.nextInt();
		int a = sc.nextInt();
		int si = sc.nextInt();
		int sj = sc.nextInt();
		int b = sc.nextInt();
		int gi = sc.nextInt();
		int gj = sc.nextInt();
		char[][] m = new char[h][];
		for(int i=0;i<h;i++) {
			m[i] = sc.next().toCharArray();
		}
		sc.close();
		System.out.println(solve(h,w,a,b,si,sj,gi,gj,m) ? "Yes" : "No");
	}

	public static final int[] DI = {0,-1,0,1};
	public static final int[] DJ = {1,0,-1,0};
	public static boolean solve(int h,int w,int a,int b,int si,int sj,int gi,int gj,char[][] m) {
		int max = Math.max(a+h+w-1,b+2*(h+w));
		boolean[][][] used = new boolean[h][w][max+1];
		Queue<Integer> q = new ArrayDeque<>();
		q.offer(a << 16 | si << 8 | sj);
		used[si][sj][a] = true;
		while(!q.isEmpty()) {
			int p = q.poll();
			int cs = p >>> 16;
			int ci = p >>> 8 & 0xff;
			int cj = p & 0xff;
			for(int i=0;i<4;i++) {
				int ni = ci + DI[i];
				int nj = cj + DJ[i];
				if (ni < 0 || ni >= h || nj < 0 || nj >= w) {
					continue;
				}
				int ns = cs + (m[ni][nj] == '*' ? 1 : -1);
				if (ns > max || ns <= 0 || used[ni][nj][ns]) {
					continue;
				}
				used[ni][nj][ns] = true;
				q.offer(ns << 16 | ni << 8 | nj);
			}
		}
		return used[gi][gj][b];
	}

}
0