Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 01BFS
- GatherTown
- 재귀함수
- 게더타운시작
- PS
- spring
- YBMCOS
- 취득후기
- 세그먼트트리
- COSPROJAVA1급
- 알고리즘
- 네트워크플로우
- java
- 우선순위큐
- 이젠 골드구현도 어렵네..
- QUICKSTARTGUIDE
- 백준
- 다익스트라
- deque
- 백준코딩테스트
- COSPRO
- 구현
- 자바PS
- 완전탐색
- BFS
- 시뮬레이션
- 다이나믹프로그래밍
- 엘라스틱서치
- DFS
- dp
Archives
- Today
- Total
공부공간
BOJ - 23747 ) 와드 본문
https://www.acmicpc.net/problem/23747
주어진 움직인 횟수만큼 좌표를 이동시켜주되, 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