반응형
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
- 알고리즘
- 주사위굴리기
- primitivetype
- java
- 자바
- string
- json파싱
- 백준
- 차이점
- ClassPathResource
- 원시타입
- char
- JSON
- Char[]
- mybatis
- sql태그
- 자바오류
- Exception
- 시뮬레이션
- SQL
- include태그
- Spring
- 변수
- 코딩테스트
- 차이
- 프로그래머스
- 데이터탑입
- 내맘대로정리
- 참조타입
- ReferenceType
Archives
- Today
- Total
재채기는 H
백준 14503 - 로봇 청소기 JAVA 본문
반응형
https://www.acmicpc.net/problem/14503
시뮬레이션 문제
문제에서 주어진 조건대로 구현해주면 된다.
로봇이라는 class를 만들어서 청소를 시켰다,
구현은 그렇게 어렵지는 않았지만
while문에서 조건이 꼬여서 시간이 오래 걸렸다. 50분~1시간?
한번 꼬여버리니까 계속 꼬여서 코드를 고치는데 힘들었다.
다음에 시뮬레이션을 풀 때는 조건을 쫌 정리한 다음에 로직을 짜야겠다.
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
class Robot {
int x;
int y;
int d;
Robot(int x, int y, int d) {
this.x = x;
this.y = y;
this.d = d;
}
}
public class 백준_로봇청소기_14503 {
static int N, M, count = 0;
static int[][] map;
static Robot robot;
// 북 동 남 서
static int[] dx = { -1, 0, 1, 0 };
static int[] dy = { 0, 1, 0, -1 };
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
map = new int[N][M];
st = new StringTokenizer(br.readLine());
robot = new Robot(Integer.parseInt(st.nextToken()), Integer.parseInt(st.nextToken()),
Integer.parseInt(st.nextToken()));
for (int i = 0; i < N; i++) {
st = new StringTokenizer(br.readLine());
for (int j = 0; j < M; j++) {
map[i][j] = Integer.parseInt(st.nextToken());
}
}
//청소시작
clean();
System.out.println(count);
}
static void clean() {
//청소는 2로 바꿈
//처음 로봇이 위치한 곳 청소
map[robot.x][robot.y] = 2;
//반복시작
while (true) {
// 왼쪽 회전
int dic = robot.d - 1;
if (dic == -1) {
dic = 3;
}
// 왼쪽 확인
int px = robot.x + dx[dic];
int py = robot.y + dy[dic];
if (map[px][py] == 0) {
//왼쪽 청소해야되면 이동후 청소
robot.x = px;
robot.y = py;
robot.d = dic;
map[px][py] = 2;
continue;
} else if (map[px][py] == 1 || map[px][py] == 2) { //왼쪽이 벽이거나 청소해야될 경우
//4방향 확인을 위한 check변수
boolean check = false;
for (int i = 0; i < 4; i++) {
int x = robot.x + dx[i];
int y = robot.y + dy[i];
//4방향 벽이거나 청소해야될 경우 true
if (map[x][y] != 0) {
check = true;
} else { // 한방향이라도 청소해야될 경우 false
check = false;
break;
}
}
//4방향이 벽이거나 청소해야 될경우
if (check) {
//방향에서 뒤로 한칸 이동할 때의 좌표
int x = robot.x - dx[robot.d];
int y = robot.y - dy[robot.d];
//뒤로 이동하는 곳이 벽일때 반복종료
if (map[x][y] == 1) {
break;
} else { // 뒤로 한칸 이동 가능할 때 이동
robot.x = x;
robot.y = y;
continue;
}
} else { //한방향이라도 청소가능할 때, 방향만 변경
robot.d = dic;
continue;
}
}
}
//지도에서 청소한곳 찾기 (2일때)
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
if (map[i][j] == 2) {
count++;
}
}
}
}
}
반응형
'알고리즘' 카테고리의 다른 글
백준 14889 - 스타트와 링크 JAVA (0) | 2020.07.24 |
---|---|
백준 14888 - 연산자 끼워넣기 JAVA (0) | 2020.07.24 |
백준 14502 - 연구소 JAVA (0) | 2020.07.22 |
백준 14499 - 주사위 굴리기 JAVA (0) | 2020.07.21 |
백준 12100 - 2048 (Easy) JAVA (0) | 2020.07.20 |
Comments