반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- BOJ
- msSQL
- softeer
- OFFSET
- 처우협의
- 기술면접
- 매개변수탐색
- upper_bound
- 퇴사통보
- 백준
- 백트래킹
- dfs
- 연결요소
- 경력
- 13908
- @P0
- BFS
- 오퍼레터
- 6987
- compose
- 소프티어
- Docker
- 성적평가
- 이분탐색
- 파라메트릭
- 물채우기
- 처우산정
- boj #19237 #어른 상어
- incr
- Kafka
Archives
- Today
- Total
기술 블로그
16953번 A → B 본문
728x90
반응형
https://www.acmicpc.net/problem/16953
재귀에 약한 것 같다.
다시 풀어볼 문제이다.
복습.
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 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> #include <set> #include <sstream> #include <tuple> #pragma warning(disable:4996) #pragma comment(linker, "/STACK:336777216") using namespace std; int calc(long long a, long long b) { if (a == b) return 1; if (a > b) return -1; int two = calc(2 * a, b); int one = calc(10 * a + 1, b); // 둘 다 불가능하면, 당연히 -1 if (two == -1 && one == -1) return -1; // 둘 중 하나만 가능하면, 다른 방법에 대해 다음 진행을 위해 1을 증가시킨 후 return if (two == -1) return one + 1; if (one == -1) return two + 1; // 만약 둘 다 가능하면, 둘 중 더 적은 방법 수에 대해 1을 증가시킨 후 return return min(one, two) + 1; } int main(void) { long long a = 0, b = 0; cin >> a >> b; cout << calc(a, b) << '\n'; return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
3184번 양 (0) | 2019.04.30 |
---|---|
3967번 매직 스타 (0) | 2019.04.23 |
16969번 차량 번호판 2 (0) | 2019.04.22 |
16968번 차량 번호판 1 (0) | 2019.04.22 |
16973번 직사각형 탈출 (0) | 2019.04.22 |