Skip to content

Commit

Permalink
[Silver II] Title: A → B, Time: 40 ms, Memory: 31252 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
Youn-Rha committed May 27, 2024
1 parent 718137e commit 9c5a744
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
24 changes: 24 additions & 0 deletions 백준/Silver/16953. A → B/A → B.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import sys

#sys.setrecursionlimit(100000)


def input():
return sys.stdin.readline()


# main
if __name__ == "__main__":
A, B = map(int, input().split())
cnt = 0
while B != A:
if B % 10 == 1 and B > A:
B -= 1
B = int(str(B)[:-1])
elif B < A or B % 2 == 1:
cnt = -2
break
else:
B //= 2
cnt += 1
print(cnt + 1)
35 changes: 35 additions & 0 deletions 백준/Silver/16953. A → B/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# [Silver II] A → B - 16953

[문제 링크](https://www.acmicpc.net/problem/16953)

### 성능 요약

메모리: 31252 KB, 시간: 40 ms

### 분류

너비 우선 탐색, 그래프 이론, 그래프 탐색, 그리디 알고리즘

### 제출 일자

2024년 5월 27일 12:56:03

### 문제 설명

<p>정수 A를 B로 바꾸려고 한다. 가능한 연산은 다음과 같은 두 가지이다.</p>

<ul>
<li>2를 곱한다.</li>
<li>1을 수의 가장 오른쪽에 추가한다. </li>
</ul>

<p>A를 B로 바꾸는데 필요한 연산의 최솟값을 구해보자.</p>

### 입력

<p>첫째 줄에 A, B (1 ≤ A < B ≤ 10<sup>9</sup>)가 주어진다.</p>

### 출력

<p>A를 B로 바꾸는데 필요한 연산의 최솟값에 1을 더한 값을 출력한다. 만들 수 없는 경우에는 -1을 출력한다.</p>

0 comments on commit 9c5a744

Please sign in to comment.