본문 바로가기
Algorithm/BFS DFS

[백준] 16953 A->B c++

by 젊은오리 2023. 3. 13.
728x90

 

문제 링크 https://www.acmicpc.net/problem/16953

KEY

  • 일반 구현으로도 문제풀이가 가능하나, DFS를 이용할 때 더 쉽게 접근할 수 있다.
  • 2를 곱하거나, 뒤에 1을 붙이는 경우 총 2가지경우를 모두 탐색한다.
  • 자료형을 주의깊게 보자..

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
#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
#include<cstring>
using namespace std;
long long A, B;
int result = 999999999;
void dfs(long long x, int cnt) {
    if (x > B)
        return;
    if (x == B) {
        result = min(result, cnt);
        return;
    }
 
    dfs(x * 2, cnt + 1); //2를 곱한다.
    dfs(x * 10 + 1, cnt + 1); //1을 수의 가장 오른쪽에 추가한다.
}
 
int main() {
    cin >> A >> B;
    dfs(A,0);
    if (result == 999999999)
        cout << -1;
    else
        cout << result + 1;
}
cs
728x90

댓글