일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 6603
- 최소공배수
- 코틀린
- 9095
- LCS
- 안드로이드
- 코테
- 파이썬
- 뒤로가기
- Android
- 1182
- Kotlin
- 11054
- 백준
- Python
- lcm
- 앱
- 11기
- 11057
- Combination
- 1260
- permutation
- 홈화면
- 순열
- 나머지
- 11053
- 매일11시
- itertools
- 괄호
- expo
Archives
- Today
- Total
목록1463 (1)
황소개발자
백준 1463 파이썬 python : 1로 만들기 @@황소처럼 우직하게@@자 가자~
다이나믹부터 푸는가? bfs 부터 풀고 다이나믹을 풀어라 당장. from collections import deque n = int(input()) dp = [-1 for i in range(1000001)] def bfs(v): global dp q = deque() q.append(v) dp[v] = 0 while q: now = q.popleft() if now == 1: return if now % 3 == 0 and dp[now // 3] == -1: dp[now // 3] = dp[now] + 1 q.append(now // 3) if now % 2 == 0 and dp[now // 2] == -1: dp[now // 2] = dp[now] + 1 q.append(now // 2) if now..
백준 문제 풀이
2020. 3. 4. 00:59