일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- git
- network
- 다이나믹 프로그래밍
- 알고리즘
- DP
- Redux
- java
- 자바
- Javascript
- CS
- Data Structure
- frontend
- TypeScript
- db
- vscode
- 프로그래머스
- react
- Python
- 백준
- 리트코드
- BFS
- Algorithm
- LeetCode
- 동적 계획법
- Graph
- DFS
- Database
- 안드로이드
- VIM
- 그레이들
Archives
- Today
- Total
늘 겸손하게
백준 - 15659번: 연산자 끼워넣기 (3) 본문
연산자 끼워넣기 (3)
문제 유형 : DFS, 백트래킹
난이도 : 골드 4
https://www.acmicpc.net/problem/15659
문제 풀이
백트래킹 문제이므로 기저조건으로 N - 1개의 연산자를 모두 썼을때 식을 계산하여 최대, 최소 값을 구한다.
함수를 재귀적으로 호출하는 조건은, 사용가능한 연산자가 남아있을 경우이다.
코드
N = int(input())
A = list(map(int, input().split()))
plus, minus, multi, div = map(int, input().split())
max_ans = int(-1e11)
min_ans = int(1e11)
def rec(string, p, m1, m2, d, cnt):
if cnt == N:
global max_ans, min_ans
result = eval(string)
max_ans = max(max_ans, result)
min_ans = min(min_ans, result)
return
if p > 0:
rec(string + '+' + str(A[cnt]), p - 1, m1, m2, d, cnt + 1)
if m1 > 0:
rec(string + '-' + str(A[cnt]), p, m1 - 1, m2, d, cnt + 1)
if m2 > 0:
rec(string + '*' + str(A[cnt]), p, m1, m2 - 1, d, cnt + 1)
if d > 0:
rec(string + '//' + str(A[cnt]), p, m1, m2, d - 1, cnt + 1)
rec(str(A[0]), plus, minus, multi, div, 1)
print(max_ans)
print(min_ans)
마무리
'코딩 문제 > 백준' 카테고리의 다른 글
백준 - 16562번: 친구비 (Python, 분리 집합) (2) | 2023.10.14 |
---|---|
백준 - 14567번: 선수과목 (Prerequisite) (0) | 2023.09.21 |
백준 - 16929번: Two Dots (Python) (0) | 2023.09.12 |
백준 - 11067번: 모노톤길 (Python) (0) | 2023.09.11 |
백준 1890 점프 (Java) (0) | 2023.08.04 |