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
- 구현
- DFS
- 세그먼트트리
- 완전탐색
- 다이나믹프로그래밍
- YBMCOS
- 백준코딩테스트
- java
- 백준
- COSPRO
- PS
- 다익스트라
- 재귀함수
- 취득후기
- BFS
- QUICKSTARTGUIDE
- 01BFS
- 엘라스틱서치
- 알고리즘
- 자바PS
- deque
- 네트워크플로우
- 이젠 골드구현도 어렵네..
- 우선순위큐
- spring
- 게더타운시작
- COSPROJAVA1급
- dp
- 시뮬레이션
- GatherTown
Archives
- Today
- Total
공부공간
SWEA - 7793 ) 오! 나의 여신님 본문
악마의 손아귀 스킬을 피해 목적지까지 갈 수 있는지 여부를 체크해주는 문제이다.
덱을 사용하여 처음 입력에 악마의 손아귀를 먼저 처리해주고 이동하는 S는 항상 한개이기 때문에
큐 내에서 같은 시간에 처리된다.
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWsBQpPqMNMDFARG
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayDeque;
import java.util.StringTokenizer;
public class Solution {
static class node{
int y,x,path;
char now;
public node(int y,int x, int path,char now) {
this.y = y ; this.x = x;
this.path= path ; this.now = now;
}
}
static int dy[] = {0,0,-1,1};
static int dx[] = {-1,1,0,0};
static int ex,ey , nowx,nowy , ny,nx;
static char nowc;
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int T = Integer.parseInt(st.nextToken());
StringBuilder sb = new StringBuilder();
ArrayDeque<node> dq = new ArrayDeque<>();
for(int tc=1 ; tc<= T; tc++) {
st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
int m = Integer.parseInt(st.nextToken());
char map[][] = new char[n][m];
for(int y= 0 ; y< n ; y++) {
char t[] = br.readLine().toCharArray();
for(int x = 0 ; x<m ; x++) {
map[y][x] = t[x];
if(t[x]=='S') {
dq.addLast(new node(y,x,0,'S'));
}else if(t[x] =='*') {
// 악마의 퍼짐을 먼저 처리
dq.addFirst(new node(y,x,0,'*'));
}else if(t[x]=='D') {
ex =x; ey= y;
}
}
}
int res= 987654321;
top :
while(!dq.isEmpty()) {
node now = dq.poll();
nowy = now.y ; nowx = now.x;
nowc = now.now ;
if(nowc =='*') {
for(int index = 0 ; index < 4 ; index++) {
ny = nowy + dy[index];
nx = nowx + dx[index];
if(ny >= 0 && nx>= 0 && ny <n && nx <m && (map[ny][nx] =='.' || map[ny][nx] =='S' )) {
map[ny][nx] ='*';
dq.add(new node(ny,nx,0,'*'));
}
}
}
else if(nowc =='S') {
for(int index = 0 ; index < 4 ; index++) {
ny = nowy + dy[index];
nx = nowx + dx[index];
if(ny >= 0 && nx>= 0 && ny <n && nx <m && (map[ny][nx] =='.' || map[ny][nx] =='D' )) {
if(map[ny][nx]=='D') {
res =now.path+1;
break top;
}
map[ny][nx] ='S';
dq.add(new node(ny,nx,now.path+1,'S'));
}
}
}
}
if(res == 987654321) {sb.append("#"+tc+" GAME OVER\n");}
else sb.append("#"+tc+" "+res+"\n");
dq.clear();
}
System.out.print(sb);
}
}
'알고리즘 > 완전탐색(BFS,DFS)' 카테고리의 다른 글
BOJ - 2206 ) 벽부수고 이동하기 (0) | 2020.03.18 |
---|---|
BOJ - 6593 ) 상범빌딩 (0) | 2020.03.18 |
BOJ - 15656 ) 치킨 배달 (2) | 2020.03.09 |
BOJ - 2933 ) 미네랄 (0) | 2020.03.08 |
SWEA - 7394 ) 종구의 딸이름 짓기 (0) | 2020.03.03 |
Comments