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
- 보석쇼핑
- 코테
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 유니온파인드
- 알고리즘
- 중반부
- 삼성 #코테 #2020상반기 #c++
- BaekJoon
- 카카오인턴
- 카카오
- 코딩테스트
- 백준
- 서버개발캠프
- 투포인터
- 식단
- 1편
- c++
- 스마일게이트
- Smilegate
- Union-find
- BFS
- 소감
- LIS #Algorithm #요소추적
- Algorithm
Archives
- Today
- Total
짱아의 개발 기록장
[Algorithm] 삼성전자 코딩테스트 - 로봇 청소기(c++) 본문
반응형
문제에서 구현하라는 순서대로 쭉 구현하면 되는 간단한 구현문제였다.
구현을 하다가 조건에 맞는 부분, 맞지 않는 부분이 나오면 끊고 다시 돌아가는 부분만 잘 확인하면 된다.
코드 첨부
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
// 로봇 청소기
#include <iostream>
using namespace std;
int n, m, r, c, d;
int area[51][51] = {0, };
int dx[4] = {-1, 0, 1, 0};
int dy[4] = {0, 1, 0, -1};
int visited[51][51] = {0, }; // 청소한 곳 표시
int ans = 0;
void change_dir()
{
if(d==0){
d = 3;
}else if(d==3){
d = 2;
}else if(d==2){
d = 1;
}else if(d==1){
d = 0;
}
}
void clean()
{
int start_x = r;
int start_y = c;
bool check = false;
int num = 0;
while(1){
// 1. 현재 위치 청소
if(check==false){
num = 0;
ans++;
visited[start_x][start_y] = 1;
}
if(num==4){ // 4방향 모두 청소x->
num = 0;
// 한 칸 후진
if(d==3){
start_y += 1;
}else if(d==0){
start_x += 1;
}else if(d==1){
start_y -= 1;
}else if(d==2){
start_x -= 1;
}
if(0>start_x || start_x>=n || 0>start_y || start_y>=m || area[start_x][start_y]==1){
break;
}
}
int temp = d-1;
if(temp==-1) temp = 3;
int nx = start_x+dx[temp];
int ny = start_y+dy[temp];
// 2-a. 왼쪽에 청소를 안했으면 그 방향으로 회전 후, 1번 돌아가
if(0<=nx && nx<n && 0<=ny && ny<m && !visited[nx][ny] && area[nx][ny]==0){
//2-a.
change_dir();
start_x = nx;
start_y = ny;
check = false;
continue;
}else{
// 2-b.
change_dir();
check = true;
num++;
continue;
}
}
}
int main()
{
cin>>n>>m;
cin>>r>>c>>d;
for(int i=0; i<n; i++){
for(int j=0; j<m; j++){
cin>>area[i][j];
}
}
clean();
cout<<ans<<"\n";
}
|
cs |
문제 첨부
github 첨부
github.com/jungahshin/algorithm/blob/master/c:c%2B%2B/14503_review_2.cpp
반응형
'Algorithm > 삼성 sw 역량테스트 기출' 카테고리의 다른 글
[Algorithm] 삼성전자 코딩테스트 - 경사로(c++) (0) | 2020.09.24 |
---|---|
[Algorithm] 삼성전자 코딩테스트 - 연산자 끼워넣기(c++) (0) | 2020.09.23 |
[Algorithm] 삼성전자 코딩테스트 - 구슬 탈출 2(c++) (0) | 2020.09.21 |
[Algorithm] 2020 상반기 삼성전자 코딩테스트 오전 - 모노미노도미노(c++) (0) | 2020.09.17 |
[Algorithm] 2018 하반기 삼성전자 코딩테스트 - 나무재테크(c++) (0) | 2020.09.17 |
Comments