공부공간

BOJ - 23747 ) 와드 본문

알고리즘/완전탐색(BFS,DFS)

BOJ - 23747 ) 와드

개발자가될수있을까? 2022. 1. 25. 23:38


 

https://www.acmicpc.net/problem/23747

 

23747번: 와드

와드를 설치하지는 않았지만, 한별이의 최종 위치의 위, 아래, 왼쪽, 오른쪽 칸은 시야로 확보하고 있다. 지나온 경로를 모두 시야로 확보하지는 않는다.

www.acmicpc.net


주어진 움직인 횟수만큼 좌표를 이동시켜주되, w (와드) 인 움직임에서는 BFS를 실행시켜주자, 이 때 WW와 같은 연속된

 

입력을 방지하기 위해서 . ( 즉 시야가 이전에 밝혀진 ) 곳은 실행 할 필요가 없다.

 

또한, 경로중에 상하좌우는 밝히지 못하고 최종 좌표에서만 상하좌우 + 최종좌표의 값만 . 로 바꾸어준다.

 

단순 구현만하면 풀리는 문제이다.

 

 


package algorithm_2022;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayDeque;
import java.util.StringTokenizer;

public class BOJ_23747 {
	
	public static int r=0,c=0;
	public static char[][] result;
	
	public static int[][] dir = {{1,0},{-1,0},{0,1},{0,-1}};
	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringTokenizer st  =new StringTokenizer(br.readLine());
		r = Integer.parseInt(st.nextToken());
		c = Integer.parseInt(st.nextToken());
		result = new char[r][c];
		for(int i=0;i<r;i++) {
			for(int j=0;j<c;j++) {
				result[i][j] = '#';
			}
		}
		
		char[][] map = new char[r][c];
		for(int i=0;i<r;i++) {
			String str = br.readLine();
			map[i] = str.toCharArray();
		}
	
		int sy,sx;
		st = new StringTokenizer(br.readLine());
		sy = Integer.parseInt(st.nextToken())-1;
		sx = Integer.parseInt(st.nextToken())-1;
		
		String move = br.readLine(); 
		// end of input

		ArrayDeque<int[]> dq = new ArrayDeque<>();
		
		for(int i=0;i<move.length();i++) {
			char now = move.charAt(i);
			if(now=='D') {
				sy++;
			} else if(now=='U') {
				sy--;
			} else if(now=='L') {
				sx--;
			} else if(now=='R') {
				sx++;
			} else {
				// w 인경우
				if(result[sy][sx]=='#') {
					// 이미 체크를 한경우는 안가도됨
					dq.add(new int[] {sy,sx});
					result[sy][sx] = '.';
					char nowchar = map[sy][sx];
					while(!dq.isEmpty()) {
						int nowxy[] = dq.poll();
						int nowy = nowxy[0];
						int nowx = nowxy[1];
						for(int j=0;j<4;j++) {
							int ny = nowy+dir[j][0];
							int nx = nowx+dir[j][1];
							if(isRange(ny, nx)&& result[ny][nx]=='#' && nowchar==map[ny][nx]) {
								result[ny][nx] = '.';
							    dq.add(new int[] {ny,nx});
							}
						}
					}
				}
			}
		}
		for(int i=0;i<4;i++) {
			int ny = sy+dir[i][0];
			int nx = sx+dir[i][1];
			if(isRange(ny, nx)) {
				result[ny][nx] ='.';
			}
		}
		result[sy][sx] ='.';
		StringBuilder sb = new StringBuilder();
		for(int i=0;i<r;i++) {
			for(int j=0;j<c;j++) {
				sb.append(result[i][j]);
			}
			sb.append("\n");
		}
		System.out.println(sb.toString());
	}
	
	public static boolean isRange(int y,int x) {
		return (y<r&&y>=0&&x>=0&&x<c);
	}
	
}

+ ) 호호

'알고리즘 > 완전탐색(BFS,DFS)' 카테고리의 다른 글

BOJ - 1525 ) 퍼즐  (0) 2022.06.25
BOJ_16928 ) 뱀과 사다리 게임  (1) 2022.03.11
BOJ - 13463 ) Brexit  (0) 2022.01.19
BOJ - 1584 ) 게임  (0) 2021.10.17
BOJ - 5014 ) 스타트링크  (0) 2021.08.21
Comments