結果

問題 No.13 囲みたい!
ユーザー uafr_csuafr_cs
提出日時 2017-10-30 17:29:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 246 ms / 5,000 ms
コード長 1,725 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 45,612 KB
最終ジャッジ日時 2023-08-14 13:13:21
合計ジャッジ時間 6,341 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
39,556 KB
testcase_01 AC 117 ms
39,812 KB
testcase_02 AC 114 ms
39,624 KB
testcase_03 AC 233 ms
44,648 KB
testcase_04 AC 231 ms
44,944 KB
testcase_05 AC 238 ms
44,524 KB
testcase_06 AC 238 ms
44,944 KB
testcase_07 AC 236 ms
45,336 KB
testcase_08 AC 246 ms
44,932 KB
testcase_09 AC 242 ms
45,612 KB
testcase_10 AC 185 ms
41,340 KB
testcase_11 AC 231 ms
43,752 KB
testcase_12 AC 173 ms
40,256 KB
testcase_13 AC 203 ms
42,424 KB
testcase_14 AC 200 ms
42,796 KB
testcase_15 AC 129 ms
39,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	
	public static final int UNVISITED = 0;
	public static final int VISITING = 1;
	public static final int VISITED = 2;
	
	public static final int[][] move_dirs = {{0, 1}, {0, -1}, {1, 0}, {-1, 0}};
	public static boolean in_range(int x, int y, int W, int H){
		return 0 <= x && x < W && 0 <= y && y < H;
	}
	
	public static boolean dfs(int x, int y, int px, int py, int H, int W, int[][] board, int[][] visited){
		//System.out.println(y + " " + x + " " + board[y][x]);
		visited[y][x] = VISITING;
		
		for(final int[] move : move_dirs){
			final int nx = x + move[0];
			final int ny = y + move[1];
			
			if(!in_range(nx, ny, W, H)){ continue; }
			if(board[y][x] != board[ny][nx]){ continue; }
			if(ny == py && nx == px){ continue; }
			
			if(visited[ny][nx] == UNVISITED){
				if(dfs(nx, ny, x, y, H, W, board, visited)){
					visited[y][x] = VISITED;
					return true;
				}
			}else if(visited[ny][nx] == VISITING){
				visited[y][x] = VISITED;
				return true;
			}
		}
		
		visited[y][x] = VISITED;
		return false;
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int W = sc.nextInt();
		final int H = sc.nextInt();
		
		int[][] board = new int[H][W];
		for(int i = 0; i < H; i++){
			for(int j = 0; j < W; j++){
				board[i][j] = sc.nextInt();
			}
		}
		
		int[][] visited = new int[H][W];
		
		for(int y = 0; y < H; y++){
			for(int x = 0; x < W; x++){
				if(visited[y][x] != UNVISITED){ continue; }
				
				if(dfs(x, y, -1, -1, H, W, board, visited)){
					System.out.println("possible");
					return;
				}
			}
		}
		
		System.out.println("impossible");
	}
}
0