백준의 DSLR(9019) 문제이다.
( 문제 바로가기 )
[ 문제풀이 ]
1. 문제는 기본적인 BFS로 풀리는 문제이다.
본인은 Queue에 (현재 숫자, 연산법) 을 쌍으로 넣어서 관리하였다.
현재 숫자는 int형으로, 연산법은 string형으로 관리하였고, 이미 방문한 값에 대해서는 다시 재탐색 하지 않도록
구현하였다.
[ 소스코드 ]
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 | #include<iostream> #include<cstring> #include<string> #include<queue> #define endl "\n" #define MAX 10000 using namespace std; int Start, End; bool Visit[MAX]; void Initialize() { memset(Visit, false, sizeof(Visit)); } void Input() { cin >> Start >> End; } string BFS(int a) { queue<pair<int, string>> Q; Q.push(make_pair(a, "")); Visit[a] = true; while (Q.empty() == 0) { int x = Q.front().first; string s = Q.front().second; Q.pop(); if (x == End) return s; int nx = x * 2; if (nx > 9999) nx = nx % 10000; if (Visit[nx] == false) { Visit[nx] = true; Q.push(make_pair(nx, s + "D")); } nx = x - 1; if (nx < 0) nx = 9999; if (Visit[nx] == false) { Visit[nx] = true; Q.push(make_pair(nx, s + "S")); } nx = (x % 1000) * 10 + (x / 1000); if (Visit[nx] == false) { Visit[nx] = true; Q.push(make_pair(nx, s + "L")); } nx = (x % 10) * 1000 + (x / 10); if (Visit[nx] == false) { Visit[nx] = true; Q.push(make_pair(nx, s + "R")); } } } void Solution() { string R = BFS(Start); cout << R << endl; } void Solve() { int Tc; cin >> Tc; for (int T = 1; T <= Tc; T++) { Initialize(); Input(); Solution(); } } int main(void) { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); //freopen("Input.txt", "r", stdin); Solve(); return 0; } | cs |
'[ BOJ Code ] > # BOJ -' 카테고리의 다른 글
[ 백준 14395 ] 4연산 (C++) (0) | 2019.01.03 |
---|---|
[ 백준 2146 ] 다리만들기 (C++) (1) | 2019.01.03 |
[ 백준 2573 ] 빙산 (C++) (0) | 2019.01.03 |
[ 백준 16198 ] 에너지 모으기 (C++) (0) | 2018.12.27 |
[ 백준 3055 ] 탈출 (C++) (2) | 2018.12.26 |