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
- 1차원 DP
- 2차원 dp
- 99클럽
- @GeneratedValue
- @GenericGenerator
- @Transactional
- Actions
- Amazon EFS
- amazon fsx
- Android Studio
- ANSI SQL
- ApplicationEvent
- async/await
- AVG
- AWS
- Azure
- bind
- builder
- button
- c++
- c++ builder
- c03
- Callback
- case when
- CCW
- chat GPT
- CICD
- Collections
- Combination
- combinations
Archives
- Today
- Total
기록
백준_2961_도영이가 만든 맛있는 음식 본문
문제
https://www.acmicpc.net/problem/2961
풀이
1) dfs
해당 음식을 사용할 때와 사용하지 않을 때를 나누어서, 모든 경우를 탐색한다.
코드
import sys
sys.setrecursionlimit(10**6)
N = int(input())
arr = [list(map(int, input().split())) for i in range(N)]
def dfs(p, sour, bitter) :
if p+1>=len(arr) : return abs(bitter-sour)
s, b = arr[p+1]
return min(dfs(p+1, sour*s, bitter+b), # use
dfs(p+1, sour, bitter)) # not use
ans = float('INF')
for i in range(len(arr)) :
ans = min(ans, dfs(i, *arr[i])) # use ith
print(ans)
'코딩테스트 > python' 카테고리의 다른 글
백준_15661_링크와 스타트 (0) | 2022.05.03 |
---|---|
백준_10830_행렬 제곱 (0) | 2022.05.03 |
백준_1022_소용돌이 예쁘게 출력하기 (0) | 2022.04.19 |
백준_2208_보석 줍기 (0) | 2022.04.07 |
백준_20040_사이클 게임 (0) | 2022.04.03 |
Comments