結果

問題 No.86 TVザッピング(2)
ユーザー scachescache
提出日時 2014-12-07 01:48:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 318 ms / 5,000 ms
コード長 2,183 bytes
コンパイル時間 3,749 ms
コンパイル使用メモリ 78,328 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-06-07 10:31:41
合計ジャッジ時間 10,163 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,960 KB
testcase_01 AC 133 ms
53,816 KB
testcase_02 AC 133 ms
53,904 KB
testcase_03 AC 132 ms
53,952 KB
testcase_04 AC 132 ms
53,948 KB
testcase_05 AC 132 ms
53,864 KB
testcase_06 AC 134 ms
54,156 KB
testcase_07 AC 135 ms
53,984 KB
testcase_08 AC 170 ms
54,084 KB
testcase_09 AC 240 ms
54,220 KB
testcase_10 AC 318 ms
54,244 KB
testcase_11 AC 141 ms
53,776 KB
testcase_12 AC 133 ms
54,112 KB
testcase_13 AC 132 ms
53,952 KB
testcase_14 AC 187 ms
54,288 KB
testcase_15 AC 229 ms
54,360 KB
testcase_16 AC 214 ms
54,192 KB
testcase_17 AC 139 ms
53,872 KB
testcase_18 AC 142 ms
54,164 KB
testcase_19 AC 138 ms
53,964 KB
testcase_20 AC 134 ms
54,092 KB
testcase_21 AC 235 ms
54,272 KB
testcase_22 AC 133 ms
53,992 KB
testcase_23 AC 200 ms
54,360 KB
testcase_24 AC 140 ms
54,140 KB
testcase_25 AC 131 ms
53,916 KB
testcase_26 AC 133 ms
54,148 KB
testcase_27 AC 135 ms
54,088 KB
testcase_28 AC 134 ms
54,052 KB
testcase_29 AC 163 ms
54,420 KB
testcase_30 AC 135 ms
53,832 KB
testcase_31 AC 133 ms
53,928 KB
testcase_32 AC 132 ms
53,932 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++;
				}
				
				if(d<=1)
					continue;
				
				tc++;
				if(tc>(n+m)*4)
					break;
				for(int k=0;k<4;k++){
					sx = j;
					sy = i;
					rec(j, i, k);
					res |= isOk();
				}

				if(res)
					break;
			}
			
			if(tc>(n+m)*4 || 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;
		int c = 0;
		while(!isEnd){
			c++;
			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