Baekjoon9019-DSLR
백준 사이트 9019 - DSLR 문제입니다.
1. 문제
https://www.acmicpc.net/problem/9019
2. Input , Output
3. 분류 및 난이도
BFS문제입니다.
생각해야할 것들이 꽤 있는 문제입니다.
백준에서는 Gold5의 난이도를 책정하고 있습니다.
4. 생각한 것들
- c++ 스트링은 제가 못써서 그런지 정말 오류를 많이 뱉어내는 것 같습니다..
- 시간을 줄일 수 있는 방법을 모두 써야 맞을 수 있는 것 같습니다.
- 로직 자체는 어렵지 않으나, 4가지 경우를 모두 큐에 넣지 않도록 조심해야합니다.
- 테스트 케이스가 있으므로 방문처리를 전역으로 하면 안됩니다.
5. code
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
#include<iostream>
#include<string>
#include<cstring>
#include<queue>
using namespace std;
int DoubleN(int x)
{
x *= 2;
if (x >= 10000)
x %= 10000;
return x;
}
int Single(int x)
{
if (x != 0)
return x - 1;
else
return 9999;
}
int Left(int x)
{
return ((x*10)%10000) + (x/1000);
}
int Right(int x)
{
return ((x%10)*1000) + (x/10);
}
//a->b
string bfs(int a, int b)
{
bool v[10001];
memset(v, false, sizeof(v));
queue<pair<int, string>> q;
q.push(make_pair(a, ""));
v[a] = true;
while (!q.empty())
{
int x = q.front().first;
string logic = q.front().second;
q.pop();
//cout << x << '\n';
if (x == b)
return logic;
//4가지 경우
//1. Double
int case1 = DoubleN(x);
if (v[case1] == false)
{
v[case1] = true;
q.push(make_pair(case1, logic + "D"));
}
//2. Single
int case2 = Single(x);
if (v[case2] == false)
{
v[case2] = true;
q.push(make_pair(case2, logic + "S"));
}
//3. Left
int case3 = Left(x);
if (v[case3] == false)
{
v[case3] = true;
q.push(make_pair(case3, logic + "L"));
}
//4. right
int case4 = Right(x);
if (v[case4] == false)
{
v[case4] = true;
q.push(make_pair(case4, logic + "R"));
}
}
return "";
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t;
cin >> t;
int a, b;
for (int i = 0; i < t; ++i)
{
cin >> a >> b;
string result = bfs(a, b);
cout << result<<'\n';
}
return 0;
}
6. 후기
왜 인지 힘든 문제였다.
This post is licensed under CC BY 4.0 by the author.