結果

問題 No.13 囲みたい!
ユーザー jp_stejp_ste
提出日時 2020-05-15 20:20:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 261 ms / 5,000 ms
コード長 1,113 bytes
コンパイル時間 3,832 ms
コンパイル使用メモリ 77,292 KB
実行使用メモリ 48,784 KB
最終ジャッジ日時 2024-09-19 06:53:07
合計ジャッジ時間 6,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,304 KB
testcase_01 AC 122 ms
41,452 KB
testcase_02 AC 116 ms
41,420 KB
testcase_03 AC 240 ms
47,920 KB
testcase_04 AC 244 ms
48,784 KB
testcase_05 AC 230 ms
47,484 KB
testcase_06 AC 233 ms
46,972 KB
testcase_07 AC 223 ms
46,672 KB
testcase_08 AC 261 ms
46,436 KB
testcase_09 AC 251 ms
47,336 KB
testcase_10 AC 190 ms
42,952 KB
testcase_11 AC 214 ms
46,148 KB
testcase_12 AC 158 ms
42,076 KB
testcase_13 AC 184 ms
44,572 KB
testcase_14 AC 186 ms
44,668 KB
testcase_15 AC 121 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main2 {
	static Scanner scan = new Scanner(System.in);
	static int W, H;
	static int[][] M;
	static boolean[][] F;
	static int[] dx = {0, 0, 1, -1};
	static int[] dy = {1, -1, 0, 0};
	
	public static void main(String[] args) {
		W = scan.nextInt();
		H = scan.nextInt();
		M = new int[H][W];
		F = new boolean[H][W];
		for(int i=0; i<H; i++) {
			for(int j=0; j<W; j++) {
				M[i][j] = scan.nextInt();
			}
		}
		for(int i=0; i<H; i++) {
			for(int j=0; j<W; j++) {
				if(!F[i][j]) solve(i, j, -1);
			}
		}
		System.out.println("impossible");
	}
	
	static void solve(int y, int x, int d) {
		int number = M[y][x];
		F[y][x] = true;
		for(int i=0; i<4; i++) {
			if(d == 0 && i == 1) continue;
			if(d == 1 && i == 0) continue;
			if(d == 2 && i == 3) continue;
			if(d == 3 && i == 2) continue;
			int nx = x + dx[i];
			int ny = y + dy[i];
			if(nx < 0 || nx >= W || ny < 0 || ny >= H) continue;
			if(M[ny][nx] != number) continue;
			if(F[ny][nx]) {
				System.out.println("possible");
				System.exit(0);
			}
			if(F[ny][nx]) continue;
			solve(ny, nx, i);
		}
	}
}
0