結果

問題 No.86 TVザッピング(2)
ユーザー ぴろずぴろず
提出日時 2014-12-05 00:27:56
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,931 ms / 5,000 ms
コード長 1,748 bytes
コンパイル時間 2,931 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-12-25 12:44:44
合計ジャッジ時間 13,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
53,908 KB
testcase_01 AC 155 ms
53,892 KB
testcase_02 AC 151 ms
54,384 KB
testcase_03 AC 154 ms
54,084 KB
testcase_04 AC 162 ms
53,892 KB
testcase_05 AC 165 ms
41,644 KB
testcase_06 AC 130 ms
41,344 KB
testcase_07 AC 142 ms
41,712 KB
testcase_08 AC 176 ms
41,840 KB
testcase_09 AC 952 ms
46,148 KB
testcase_10 AC 1,931 ms
45,936 KB
testcase_11 AC 147 ms
41,380 KB
testcase_12 AC 154 ms
41,488 KB
testcase_13 AC 150 ms
41,712 KB
testcase_14 AC 230 ms
45,252 KB
testcase_15 AC 268 ms
45,532 KB
testcase_16 AC 249 ms
45,568 KB
testcase_17 AC 152 ms
41,600 KB
testcase_18 AC 152 ms
41,840 KB
testcase_19 AC 154 ms
41,752 KB
testcase_20 AC 137 ms
41,576 KB
testcase_21 AC 1,184 ms
45,852 KB
testcase_22 AC 153 ms
41,728 KB
testcase_23 AC 216 ms
45,280 KB
testcase_24 AC 154 ms
41,760 KB
testcase_25 AC 152 ms
41,624 KB
testcase_26 AC 148 ms
41,252 KB
testcase_27 AC 136 ms
41,404 KB
testcase_28 AC 144 ms
41,440 KB
testcase_29 AC 765 ms
46,036 KB
testcase_30 AC 143 ms
41,748 KB
testcase_31 AC 147 ms
41,648 KB
testcase_32 AC 148 ms
41,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no086;

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

public class Main {
	public static final int[] di = {0,-1,0,1};
	public static final int[] dj = {1,0,-1,0};
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		char[][] map = new char[n+2][];
		int channels = 0;
		for(int i=1;i<=n;i++) {
			map[i] = ("#" + sc.next() + "#").toCharArray() ;
		}
		map[0] = new char[m+2];
		map[n+1] = new char[m+2];
		Arrays.fill(map[0], '#');
		Arrays.fill(map[n+1], '#');
		for(int i=1;i<=n;i++) {
			for(int j=1;j<=m;j++) {
				if (map[i][j] == '.') {
					channels++;
				}
			}
		}
		for(int si=1;si<=n;si++) {
			for(int sj=1;sj<=m;sj++) {
				if (map[si][sj] == '#') {
					continue;
				}
				for(int sd=0;sd<4;sd++) {
					int i = si;
					int j = sj;
					int dir = sd;
					boolean[][] used = new boolean[n+2][m+2];
					for(int i2=0;i2<=n+1;i2++) {
						for(int j2=0;j2<=m+1;j2++) {
							if (map[i2][j2] == '#') {
								used[i2][j2] = true;
							}
						}
					}
					int count = 0;
					while(true) {
						if (used[i][j]) {
							if (i == si && j == sj && count == channels) {
								System.out.println("YES");
								return;
							}
							break;
						}
						used[i][j] = true;
						count++;
						int ni = i + di[dir];
						int nj = j + dj[dir];
						if (used[ni][nj] && !(ni == si && nj == sj)) {
							int dir2 = (dir+1) % 4;
							if (used[i+di[dir2]][j+dj[dir2]] && !(i+di[dir2] == si && j+dj[dir2] == sj)) {
								break;
							}
							dir = dir2;
						}
						i += di[dir];
						j += dj[dir];
					}
				}
			}
		}
		System.out.println("NO");
	}

}
0