結果

問題 No.323 yuki国
ユーザー kou6839kou6839
提出日時 2015-12-16 00:53:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 554 ms / 5,000 ms
コード長 1,613 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 78,632 KB
実行使用メモリ 97,864 KB
最終ジャッジ日時 2024-06-28 12:19:40
合計ジャッジ時間 12,986 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,344 KB
testcase_01 AC 133 ms
53,784 KB
testcase_02 AC 136 ms
54,020 KB
testcase_03 AC 135 ms
54,272 KB
testcase_04 AC 131 ms
53,880 KB
testcase_05 AC 168 ms
56,496 KB
testcase_06 AC 167 ms
54,224 KB
testcase_07 AC 132 ms
53,820 KB
testcase_08 AC 465 ms
95,768 KB
testcase_09 AC 337 ms
95,572 KB
testcase_10 AC 121 ms
53,168 KB
testcase_11 AC 135 ms
54,200 KB
testcase_12 AC 135 ms
53,988 KB
testcase_13 AC 318 ms
95,628 KB
testcase_14 AC 434 ms
95,872 KB
testcase_15 AC 321 ms
95,804 KB
testcase_16 AC 453 ms
95,372 KB
testcase_17 AC 348 ms
95,812 KB
testcase_18 AC 155 ms
63,128 KB
testcase_19 AC 432 ms
76,308 KB
testcase_20 AC 203 ms
84,700 KB
testcase_21 AC 549 ms
97,864 KB
testcase_22 AC 286 ms
93,604 KB
testcase_23 AC 554 ms
97,852 KB
testcase_24 AC 231 ms
85,076 KB
testcase_25 AC 358 ms
95,444 KB
testcase_26 AC 243 ms
85,080 KB
testcase_27 AC 506 ms
95,700 KB
testcase_28 AC 383 ms
96,036 KB
testcase_29 AC 355 ms
95,636 KB
testcase_30 AC 130 ms
53,804 KB
testcase_31 AC 140 ms
54,012 KB
testcase_32 AC 151 ms
54,184 KB
testcase_33 AC 149 ms
54,672 KB
testcase_34 AC 164 ms
56,400 KB
testcase_35 AC 133 ms
54,012 KB
testcase_36 AC 146 ms
53,792 KB
testcase_37 AC 136 ms
53,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static class snow{
		int x,y,unko;
		public snow(int x,int y,int unko) {
			// TODO Auto-generated constructor stub
			this.x = x;
			this.y = y;
			this.unko = unko;
		}
	}
	static long gcd(long a,long b){
		return b == 0 ? a : gcd(b, a%b);
	}
	static long lcm(long a, long b){
		return a*b/gcd(a, b);
	}
	static int[] dx = {1,0,-1,0};
	static int[] dy = {0,1,0,-1};
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		
		int x = sc.nextInt();
		int y = sc.nextInt();
		int a = sc.nextInt();
		int sx = sc.nextInt();
		int sy = sc.nextInt();
		int b = sc.nextInt();
		int gx = sc.nextInt();
		int gy = sc.nextInt();
		boolean[][] map = new boolean[x][y];
		for(int i=0;i<x;i++){
			String tmp = sc.next();
			for(int j=0;j<y;j++){
				if(tmp.charAt(j)=='*') map[i][j]=true;
			}
		}
		boolean[][][] checked = new boolean[x][y][10000];
		Queue<snow> queue = new LinkedList<>();
		queue.add(new snow(sx, sy, a));
		int count = 0;
		while(!queue.isEmpty()){
			snow now = queue.poll();
			count++;
			if(count>3000000) break;
			if(now.x == gx && now.y == gy && now.unko == b){
				System.out.println("Yes");
				return;
			}
			for(int i=0;i<4;i++){
				int nextx = now.x+dx[i];
				int nexty = now.y+dy[i];
				if(nextx>=0 &&nextx<x && nexty>=0 && nexty<y){
					int nextunk = now.unko+ (map[nextx][nexty]?1:-1);
					if(nextunk<=0 || nextunk > 5000|| checked[nextx][nexty][nextunk]) continue;
					queue.add(new snow(nextx, nexty, nextunk));
					checked[nextx][nexty][nextunk]=true;
				}
			}
		}
		System.out.println("No");
		
	}
}
0