[백준] 20055번_컨베이어 벨트 위의 로봇(Java)
문제 풀이
백준의 20055번 문제입니다. 문제 출처
(1) 문제 파악
(2) 문제 풀이 방법 생각하기
구현 문제이므로 문제에 나온 순서대로 차근히 구현해주면 됩니다!
[1] 로봇과 함께 회전하기
1
2
3
4
5
6
7
8
9
10
11
int temp = belt[2*N-1];
for(int i=2*N-1; i>0; i--) {
belt[i] = belt[i-1];
}
belt[0] = temp;
for(int i=N-1; i>0; i--) {
robot[i] = robot[i-1];
}
robot[0] = false;
[2] 로봇 이동 시키기
1
2
3
4
5
6
7
8
9
10
11
12
if(robot[N-1]) robot[N-1] = false; // N번에 있는 로봇은 내리는 자리에 있으므로 내려줍니다.
for(int i=N-2; i>=0; i--) {
if(robot[i]) {
if(!robot[i+1] && belt[i+1]>0) {
robot[i] = false;
robot[i+1] = true;
belt[i+1] -= 1;
if(belt[i+1] == 0) count++;
}
}
}
[3] 로봇 올리기
1
2
3
4
5
if(belt[0] > 0) {
belt[0] -= 1;
if(belt[0] == 0) count++;
robot[0] = true;
}
(3) 구현
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import java.io.*;
import java.util.*;
public class Main {
static int N, K;
static int answer = 0;
static int[] belt;
static boolean[] robot;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
K = Integer.parseInt(st.nextToken());
belt = new int[2*N];
robot = new boolean[N];
st = new StringTokenizer(br.readLine());
for(int i=0; i<2*N; i++) {
belt[i] = Integer.parseInt(st.nextToken());
}
simulation();
System.out.println(answer);
br.close();
}
private static void simulation() {
int count = 0;
while(count<K) {
answer++;
// 1. 로봇과 함께 회전하기
int temp = belt[2*N-1];
for(int i=2*N-1; i>0; i--) {
belt[i] = belt[i-1];
}
belt[0] = temp;
for(int i=N-1; i>0; i--) {
robot[i] = robot[i-1];
}
robot[0] = false;
// 2. 로봇 옮기기
if(robot[N-1]) robot[N-1] = false;
for(int i=N-2; i>=0; i--) {
if(robot[i]) {
if(!robot[i+1] && belt[i+1]>0) {
robot[i] = false;
robot[i+1] = true;
belt[i+1] -= 1;
if(belt[i+1] == 0) count++;
}
}
}
// 3. 로봇 올리기
if(belt[0] > 0) {
belt[0] -= 1;
if(belt[0] == 0) count++;
robot[0] = true;
}
}
}
}
This post is licensed under CC BY 4.0 by the author.
Comments