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 | 31 |
Tags
- 이분 매칭
- 스택
- 스프링 시큐리티
- 구간 트리
- dp
- Logback
- spring cloud
- 게이트웨이
- 트리
- spring boot
- 메모이제이션
- 백트래킹
- 플로이드 와샬
- 유레카
- 비트마스킹
- Spring Cloud Config
- 다익스트라
- 구현
- 서비스 디스커버리
- 도커
- docker-compose
- BFS
- Java
- 달팽이
- ZuulFilter
- 완전 탐색
- 주울
- Gradle
- Zuul
- 이분 탐색
Archives
- Today
- Total
Hello, Freakin world!
[백준 14503번] 로봇 청소기 본문
제게는 이런 종류의 약간 복잡한 구현 문제가 코테의 숨은 복병입니다.
이런 종류의 구현 문제는... 문제를 잘 이해하고 뭐 그냥 많이 풀어보면서 패턴을 많이 익혀두는 수 밖에 없겠네요.
...
/*
백준 14503번 - 로봇 청소기
https://www.acmicpc.net/problem/14503
*/
public class Main {
static int n,m;
static int[][] room;
static boolean[][] cleaned;
static int[][] directions = {
{-1,0},
{0,1},
{1,0},
{0,-1}
};
public static void main(String[] args) throws IOException {
// InputReader reader = new InputReader("testcase.txt");
InputReader reader = new InputReader();
StringTokenizer st = new StringTokenizer(reader.readLine());
n = Integer.parseInt(st.nextToken());
m = Integer.parseInt(st.nextToken());
room = new int[n][m];
cleaned = new boolean[n][m];
st = new StringTokenizer(reader.readLine());
int start_r = Integer.parseInt(st.nextToken());
int start_c = Integer.parseInt(st.nextToken());
int start_d = Integer.parseInt(st.nextToken());
for (int i = 0; i < n; i++) {
st = new StringTokenizer(reader.readLine());
for (int j = 0; j < m; j++) {
room[i][j] = Integer.parseInt(st.nextToken());
}
}
int r = start_r;
int c = start_c;
int d = start_d;
cleaned[r][c] = true;
int cleanCnt = 1;
while(true) {
int nextD = (d+3)%4;
int nextR = r + directions[nextD][0];
int nextC = c + directions[nextD][1];
if(room[nextR][nextC] == 0 && !cleaned[nextR][nextC]) {
cleanCnt++;
r = nextR; c = nextC; d=nextD;
cleaned[r][c] = true;
continue;
}
if(is4waysCleanedOrWall(r,c)) {
int behindR = r - directions[d][0];
int behindC = c - directions[d][1];
if (room[behindR][behindC] == 1) break;
if(room[behindR][behindC] == 0) {
r = behindR; c = behindC;
continue;
}
}
d = nextD;
}
System.out.println(cleanCnt);
}
/*
해당 위치의 모든 방향으로 청소가 되어있거나 벽이 있는 경우
*/
public static boolean is4waysCleanedOrWall(int r, int c) {
for (int i = 0; i < 4; i++) {
int nextR = r+directions[i][0];
int nextC = c+directions[i][1];
if(room[nextR][nextC] == 0 && !cleaned[nextR][nextC]) return false;
}
return true;
}
}
class InputReader {
private BufferedReader br;
public InputReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
public InputReader(String filepath) {
try {
br = new BufferedReader(new FileReader(filepath));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public String readLine() throws IOException {
return br.readLine();
}
public int readInt() throws IOException {
return Integer.parseInt(readLine());
}
}
'알고리즘 > PS' 카테고리의 다른 글
[백준 14500번] 테트로미노 (0) | 2020.09.12 |
---|---|
[백준 1931번] - 회의실 배정 [그리디 알고리즘의 증명] (3) | 2020.09.12 |
[백준 2042번] 구간 합 구하기 (0) | 2020.09.10 |
[백준 1697번] 숨바꼭질 - BFS (0) | 2020.09.08 |
[백준 3190번] 뱀 (0) | 2020.09.07 |
Comments