結果

問題 No.323 yuki国
ユーザー 37zigen37zigen
提出日時 2016-03-14 03:17:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,479 bytes
コンパイル時間 4,328 ms
コンパイル使用メモリ 85,296 KB
実行使用メモリ 357,096 KB
最終ジャッジ日時 2024-09-25 11:51:35
合計ジャッジ時間 18,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
42,408 KB
testcase_01 AC 134 ms
41,596 KB
testcase_02 AC 160 ms
43,128 KB
testcase_03 AC 142 ms
52,164 KB
testcase_04 AC 134 ms
42,444 KB
testcase_05 AC 216 ms
48,072 KB
testcase_06 AC 208 ms
46,244 KB
testcase_07 AC 134 ms
43,596 KB
testcase_08 AC 524 ms
344,928 KB
testcase_09 WA -
testcase_10 AC 148 ms
41,728 KB
testcase_11 AC 135 ms
41,664 KB
testcase_12 AC 137 ms
41,680 KB
testcase_13 WA -
testcase_14 AC 673 ms
345,096 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 227 ms
125,348 KB
testcase_19 AC 426 ms
219,580 KB
testcase_20 AC 489 ms
345,116 KB
testcase_21 AC 586 ms
345,508 KB
testcase_22 WA -
testcase_23 AC 582 ms
345,516 KB
testcase_24 AC 516 ms
345,284 KB
testcase_25 AC 560 ms
345,640 KB
testcase_26 AC 511 ms
345,216 KB
testcase_27 AC 569 ms
345,624 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 150 ms
42,684 KB
testcase_31 AC 210 ms
44,868 KB
testcase_32 AC 194 ms
46,372 KB
testcase_33 AC 191 ms
46,224 KB
testcase_34 AC 221 ms
47,400 KB
testcase_35 AC 148 ms
42,108 KB
testcase_36 AC 196 ms
46,024 KB
testcase_37 AC 134 ms
42,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Date;
import java.util.Queue;
import java.util.Scanner;
public class main{
	static class snow{
		int x,y,z;
		snow(int x,int y,int z){
			this.x=x;
			this.y=y;
			this.z=z;
		}
	}
	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);
		long exec_time=new Date().getTime();
		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();
		
		boolean[][] map=new boolean[h][w];
		for(int i=0;i<h;i++){
			String tmp=sc.next();
			for(int j=0;j<w;j++){
				if(tmp.charAt(j)=='*')map[i][j]=true;
			}
		}
		boolean[][][] used=new boolean[h][w][100000];
		Queue<snow> q=new ArrayDeque<>();
		q.add(new snow(si,sj,a));
		int count=0;
		while(!q.isEmpty()){
			snow now=q.poll();
			count++;
			if(count>300000)break;
			if(now.x==gi&&now.y==gj&&now.z==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<h&&nexty>=0&&nexty<w){
					int nextz=now.z+(map[nextx][nexty]?1:-1);
					if(nextz<=0||nextz>50000||used[nextx][nexty][nextz])continue;
					q.add(new snow(nextx,nexty,nextz));
					used[nextx][nexty][nextz]=true;
				}
			}
		}
		System.out.println("No");

			System.err.println(new Date().getTime()-exec_time+"ms");		
		}
	}


0