문제 링크 : https://www.acmicpc.net/problem/14503
알고리즘
1.회전하는 함수와 이동하는 함수를 만들어주고 주어진 조건에따라 청소기가 움직일 수있게 하면됨.
코드
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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | #include<iostream> using namespace std; int map[55][55]; int robot; int N, M, r, c, d; pair<int, int> p; int result = 0; bool possible = false; //방향 회전 void spin() { d--; if (d < 0)d = 3; } //앞으로 전진 void front() { //북 if (d == 0) { p = make_pair(-1, 0); } //동 if (d == 1) { p = make_pair(0,1); } //남 if (d == 2) { p = make_pair(1, 0); } //서 if (d == 0) { p = make_pair(0,-1); } } void back() { //북 if (d == 0) { p = make_pair(1, 0); } //동 else if (d == 1) { p = make_pair(0,-1); } //남 else if (d == 2) { p = make_pair(-1, 0); } //서 if (d == 3) { p = make_pair(0,1); } } void check() { spin(); front(); if (map[r + p.first][c + p.second] == 0) { possible = true; } } void func() { while (1) { if (map[r][c] == 0) { map[r][c] = 2; result++; } //네방향 탐색 for (int i = 0; i < 4; i++) { check(); } //갈곳이없으면 후진 if (!possible) { back(); //후진가능하면 후진 if (map[r + p.first][c + p.second] != 1) { r = r + p.first; c = c + p.second; continue; } //후진 할 곳이 없으면 종료 else return; } spin(); front(); //앞으로 갈 수있으면 가고 if (map[r + p.first][c + p.second] == 0) { r = r + p.first; c = c + p.second; } //못가면 넘긴다. else continue; possible = false; } } int main() { cin >> N >> M; cin >> r >> c >> d; for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { cin >> map[i][j]; } } func(); cout << result; } | cs |
'c++ > 백준' 카테고리의 다른 글
백준 11052번: 카드 구매하기 (0) | 2020.03.25 |
---|---|
백준 1699번: 제곱수의 합 (0) | 2020.03.25 |
백준 2294번: 동전 2 (0) | 2020.03.25 |
백준 11727번: 2 x n 타일링 2 (0) | 2020.03.25 |
백준 11726번: 2 x n 타일링 (0) | 2020.03.25 |
백준 14503번: 로봇 청소기