結果

問題 No.86 TVザッピング(2)
ユーザー scachescache
提出日時 2014-12-07 01:27:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,184 bytes
コンパイル時間 3,032 ms
コンパイル使用メモリ 78,380 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-06-11 16:00:05
合計ジャッジ時間 8,221 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 104 ms
52,784 KB
testcase_02 AC 122 ms
54,108 KB
testcase_03 AC 121 ms
54,008 KB
testcase_04 AC 116 ms
53,852 KB
testcase_05 AC 129 ms
54,220 KB
testcase_06 AC 107 ms
52,960 KB
testcase_07 AC 120 ms
53,852 KB
testcase_08 AC 153 ms
54,400 KB
testcase_09 AC 155 ms
54,184 KB
testcase_10 AC 170 ms
54,048 KB
testcase_11 AC 126 ms
54,220 KB
testcase_12 AC 119 ms
54,100 KB
testcase_13 AC 114 ms
53,828 KB
testcase_14 AC 146 ms
54,268 KB
testcase_15 AC 158 ms
54,356 KB
testcase_16 AC 160 ms
54,344 KB
testcase_17 WA -
testcase_18 AC 107 ms
52,908 KB
testcase_19 AC 108 ms
53,028 KB
testcase_20 AC 119 ms
54,028 KB
testcase_21 AC 150 ms
54,480 KB
testcase_22 AC 120 ms
54,064 KB
testcase_23 AC 155 ms
54,188 KB
testcase_24 AC 120 ms
54,232 KB
testcase_25 AC 119 ms
53,976 KB
testcase_26 AC 107 ms
52,988 KB
testcase_27 AC 121 ms
54,056 KB
testcase_28 AC 117 ms
54,016 KB
testcase_29 AC 150 ms
54,224 KB
testcase_30 AC 112 ms
53,580 KB
testcase_31 AC 109 ms
52,916 KB
testcase_32 AC 121 ms
54,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main86 {
	public static void main(String[] args) {
		Main86 p = new Main86();
	}

	char[][]  map;
	public Main86() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		map = new char[n][];
		for(int i=0;i<map.length;i++)
			map[i] = sc.next().toCharArray();
		solve(n, m);
	}


	int[] dx = {-1, 0, 1, 0};
	int[] dy = {0, 1, 0, -1};
	int sx = -1;
	int sy = -1;
	public void solve(int n, int m) {
		boolean res =false;
		int tc = 0;
		for(int i=0;i<map.length;i++){
			for(int j=0;j<map[i].length;j++){
				if(map[i][j]!='.')
					continue;
					
				int d = 0;
				for(int k=0;k<4;k++){
					int nx = j+dx[k];
					int ny = i+dy[k];
					if(0<=nx && nx<map[0].length && 0<=ny && ny<map.length && map[ny][nx]=='.')
						d += (k%2==0 ? 1 : 10);
				}
				
				if(d != 11 && d!=22)
					continue;
				
				tc++;
				if(tc>10)
					break;
				for(int k=0;k<4;k++){
					sx = j;
					sy = i;
					rec(j, i, k);
					res = isOk();
				}

				if(res)
					break;
			}
			
			if(tc>10 || res)
				break;
		}
		
		System.out.println(res ? "YES" : "NO");
	}

	private boolean isOk() {
		boolean ok = true;
		for(int i=0;i<map.length;i++){
			for(int j=0;j<map[i].length;j++){
				if(map[i][j]=='.')
					ok = false;
				else if(map[i][j] == 'a')
					map[i][j] = '.';
				
			}
		}
		return ok;
	}

	private void rec(int x, int y, int curDir) {
//		System.out.println(" " + x +" " + y +" " + curDir);
//		for(int i=0;i<map.length;i++)
//			System.out.println(Arrays.toString(map[i]));
//		System.out.println();
		boolean isEnd = false;
		while(!isEnd){
			isEnd =true;
			for(int i=0;i<2;i++){
				int nx = x + dx[(curDir+i)%4];
				int ny = y + dy[(curDir+i)%4];
				
				if(nx<0 || map[0].length<=nx || ny<0 || map.length<=ny)
					continue;
				
				if(map[ny][nx]!='.')
					continue;
				
				map[ny][nx] = 'a';
				if(nx==sx && ny==sy){
					isEnd=true;
					break;
				}
				x = nx;
				y = ny;
				curDir = (curDir+i)%4;
				isEnd = false;
				break;
			}
		}
		
	}

}
0