포스트

[ 프로그래머스 ] 방문 길이

문제


https://school.programmers.co.kr/learn/courses/30/lessons/49994

풀이


주어진 경로에 따라 이동하면서 중복된 길의 개수를 제외한 방문한 길의 개수를 구하는 문제로, 방문할 위치 뿐만 아니라 현재 위치 또한 고려해야 한다. 따라서 이전 위치와 방문할 위치 좌표를 map을 통해 저장, 주어진 경로를 모두 이동하였을 때, map의 사이즈를 통해 처음 방문한 길의 개수를 return한다.

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
131
132
133
134
135
136
137
138
139
140
141
142
143
#include <string>
#include <algorithm>
#include <map>
using namespace std;

int row = 0;
int col = 0;

int pre_row = 0;
int pre_col = 0;

vector<string> arr;
string location;

map<string, int> mapset;

int solution(string dirs) 
{
    int answer = 0;

    for (int i = 0; i < dirs.size(); i++)
    {
        location = "";

        pre_row = row;
        pre_col = col;

        if (dirs[i] == 'U')
        {
            if (row == 5) continue;
            row++;
        }

        else if (dirs[i] == 'D')
        {
            if (row == - 5) continue;
            row--;
        }

        else if (dirs[i] == 'L')
        {
            if (col == - 5) continue;
            col--;
        }

        else if (dirs[i] == 'R')
        {
            if (col == 5) continue;
            col++;
        }

        if (pre_row > row)
        {
            if (pre_col > col)
            {
                location += to_string(pre_row);
                location += ',';

                location += to_string(pre_col);
                location += ',';


                location += to_string(row);
                location += ',';

                location += to_string(col);
            }

            else
            {
                location += to_string(row);
                location += ',';

                location += to_string(col);
                location += ',';

                location += to_string(pre_row);
                location += ',';

                location += to_string(pre_col);
            }
        }

        else
        {
            if (pre_row == row)
            {
                if (pre_col > col)
                {
                    location += to_string(pre_row);
                    location += ',';

                    location += to_string(pre_col);
                    location += ',';


                    location += to_string(row);
                    location += ',';

                    location += to_string(col);
                }

                else
                {
                    location += to_string(row);
                    location += ',';

                    location += to_string(col);
                    location += ',';

                    location += to_string(pre_row);
                    location += ',';

                    location += to_string(pre_col);
                }
            }

            else
            {
                location += to_string(pre_row);
                location += ',';

                location += to_string(pre_col);
                location += ',';


                location += to_string(row);
                location += ',';

                location += to_string(col);

            }
        }

        mapset.insert({ location, 0 });

    }

    answer = mapset.size();

    return answer;
}

이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.