-
[Python] ๋ฐฑ์ค 16953 A → B (Greedy/BFS)๐ป Algorithm/Python 2022. 7. 8. 19:27
๐ ๋ฌธ์
์ A๋ฅผ B๋ก ๋ฐ๊พธ๋ ค๊ณ ํ๋ค. ๊ฐ๋ฅํ ์ฐ์ฐ์ ๋ค์๊ณผ ๊ฐ์ ๋ ๊ฐ์ง์ด๋ค.
2๋ฅผ ๊ณฑํ๋ค.
1์ ์์ ๊ฐ์ฅ ์ค๋ฅธ์ชฝ์ ์ถ๊ฐํ๋ค.
A๋ฅผ B๋ก ๋ฐ๊พธ๋๋ฐ ํ์ํ ์ฐ์ฐ์ ์ต์๊ฐ์ ๊ตฌํด๋ณด์.์ ๋ ฅ
์ฒซ์งธ ์ค์ A, B (1 ≤ A < B ≤ 109)๊ฐ ์ฃผ์ด์ง๋ค.
์ถ๋ ฅ
A๋ฅผ B๋ก ๋ฐ๊พธ๋๋ฐ ํ์ํ ์ฐ์ฐ์ ์ต์๊ฐ์ 1์ ๋ํ ๊ฐ์ ์ถ๋ ฅํ๋ค. ๋ง๋ค ์ ์๋ ๊ฒฝ์ฐ์๋ -1์ ์ถ๋ ฅํ๋ค.
์์ ์ ๋ ฅ 1
2 162
2 → 4 → 8 → 81 → 162
์์ ์ถ๋ ฅ 1
5
์์ ์ ๋ ฅ 2
4 42
์์ ์ถ๋ ฅ 2
-1
์์ ์ ๋ ฅ 3
100 40021
100 → 200 → 2001 → 4002 → 40021
์์ ์ถ๋ ฅ 3
5
๐ ํ์ด
๐ฌ Greedy Code
import sys input = sys.stdin.readline a, b = map(int, input().split()) cnt = 1 while a != b: if b % 2 != 0: # ํ์๋ฉด if str(b)[len(str(b))-1] == '1' and b != 1: # ๋์๋ฆฌ๊ฐ 1์ด๋ฉด 1 ์ ๊ฑฐ b = int(str(b)[:len(str(b))-1]) cnt += 1 else: # ์๋๋ฉด -1 ์ถ๋ ฅ cnt = -1 break elif b % 2 == 0: # ์ง์๋ฉด ๋๋๊ธฐ 2 b //= 2 cnt += 1 print(cnt)
๐ก Greedy Solution
Greedy๋ก ํ๋ฉด A์์ B๋ฅผ ๋ง๋๋ ๊ฒ๋ณด๋ค ๋ฐ๋๋ก B์์ A๋ฅผ ๋ง๋ค์ด์ฃผ๋ ๊ฒ์ด ํธํฉ๋๋ค.
1. B๊ฐ ํ์์ธ ๊ฒฝ์ฐ
- B๊ฐ 1๋ก ๋๋๋ ํ์์ธ ๊ฒฝ์ฐ (ex. 11, 31): ๋์๋ฆฌ 1์ ์ ๊ฑฐํ ํ ํ๋จ
- B๊ฐ 1๋ก ๋๋์ง ์๋ ํ์์ธ ๊ฒฝ์ฐ (ex. 57, 43): ๋์๋ฆฌ 1์ ์ ๊ฑฐํ ์๋, ์ ์ฒด๋ฅผ 2๋ก ๋๋ ์๋ ์์ผ๋ฏ๋ก A๋ก ๋ง๋ค ์ X
2. B๊ฐ ์ง์์ธ ๊ฒฝ์ฐ
- ์ ์ฒด๋ฅผ 2๋ก ๋๋
3. B์ A๊ฐ ๊ฐ์์ง๋ฉด while๋ฌธ ์ข ๋ฃ
๐ฌ BFS Code
import sys from collections import deque input = sys.stdin.readline def bfs(): q = deque([(a, 1)]) while q: x, dist = q.popleft() if x == b: print(dist) sys.exit(0) for nx in [x * 2, int(str(x) + '1')]: if nx <= b: q.append((nx, dist + 1)) print(-1) a, b = map(int, input().split()) bfs()
๐ก BFS Solution
์ ์๋๋ก A๋ฅผ B๋ก ๋ง๋๋ ํ์ด์ ๋๋ค.
'๐ป Algorithm > Python' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Python] ๋ฐฑ์ค 4358 ์ํํ (Counter) (0) 2022.07.08 [Python] ๋ฐฑ์ค 19637 IF๋ฌธ ์ข ๋์ ์จ์ค (Binary Search) (0) 2022.07.08 [Python] ๋ฐฑ์ค 15787 ๊ธฐ์ฐจ๊ฐ ์ด๋ ์ ํค์น๊ณ ์ํ์๋ฅผ (๊ตฌํ) (0) 2022.07.08 [Python] ๋ฐฑ์ค 11286 ์ ๋๊ฐ ํ (Heapq) (0) 2022.07.08 [Python] ๋ฐฑ์ค 3184 ์ (BFS) (0) 2022.07.02