일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- java
- BFS
- 이분탐색
- 다익스트라
- backjoon
- 추석맞이 코딩챌린지
- programmers
- DateTime
- 파이썬
- heapq
- 정렬
- Set
- Zip
- 자바
- dfs
- 정규식
- Re
- 위클리 챌린지
- 백준
- lambda
- 동적 계획법
- 재귀함수
- python
- Combinations
- 프로그래머스
- divmod
- KAKAO BLIND RECRUITMENT
- 수학
- 카카오
- 그리디
Archives
- Today
- Total
상상쓰
[백준] 연산자 끼워넣기 본문
https://www.acmicpc.net/problem/14888
DFS 알고리즘을 이용하여 모든 경우를 구하여 최댓값과 최솟값을 반환하면 된다.
연산자의 개수는 len(A) - 1 이기 때문에 rf() 의 인자 i 가 len(A) 일 때 하나의 계산이 끝나므로 그때의 값을 비교하면 된다.
o[] 로 해당 연산을 할 수 있는지 알 수 있다. rf() 가 시작할 때 해당 연산자를 썼다는 의미로 -1을 해주고 끝나면 이 전의 o[] 로 돌려주기 위해 +1를 해준다.
import sys
N = int(sys.stdin.readline())
A = list(map(int, sys.stdin.readline().split()))
o = list(map(int, sys.stdin.readline().split()))
m, M = float('inf'), float('-inf')
def rf(A, o, n, i):
global m
global M
if len(A) == i:
m = min(m, n)
M = max(M, n)
else:
for k in range(4):
if k == 0 and o[k] > 0:
o[k] -= 1
rf(A, o, n + A[i], i + 1)
o[k] += 1
if k == 1 and o[k] > 0:
o[k] -= 1
rf(A, o, n - A[i], i + 1)
o[k] += 1
if k == 2 and o[k] > 0:
o[k] -= 1
rf(A, o, n * A[i], i + 1)
o[k] += 1
if k == 3 and o[k] > 0:
o[k] -= 1
rf(A, o, n // A[i] if n > 0 else (- n // A[i]) * - 1, i + 1)
o[k] += 1
rf(A, o, A[0], 1)
print(M)
print(m)
'Coding Test' 카테고리의 다른 글
[백준] 빗물 (0) | 2021.10.28 |
---|---|
[백준] 괄호의 값 (0) | 2021.10.27 |
[프로그래머스] 12주차_피로도 (0) | 2021.10.25 |
[프로그래머스] 내적 (0) | 2021.10.22 |
[프로그래머스] 공 이동 시뮬레이션 (0) | 2021.10.21 |
Comments