-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Silver II] Title: A → B, Time: 40 ms, Memory: 31252 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|