[BaekJoon] 백준 14888번 연산자 끼워넣기
🎈문제
https://www.acmicpc.net/problem/14888
💬설명
- 연산자로 만들 수 있는 모든 조합 구해서 계산해주면 된다.
- 조합을 Itertools 를 사용하지 않고 직접 구현해보았다.
- 어렵지 않은 문제
👩💻코드
# BaekJoon14888.py
N = int(input())
arr = list(map(int, input().split())) # 숫자들
ops = list(map(int, input().split())) # + - * % 의 개수
max_result = float('-inf')
min_result = float('inf')
def dfs(lis):
global ops, arr, max_result, min_result
# 모든 연산자가 사용된 경우
if len(lis) == len(arr) - 1:
result = arr[0]
for idx, op in enumerate(lis):
if op == 0:
result += arr[idx + 1]
elif op == 1:
result -= arr[idx + 1]
elif op == 2:
result *= arr[idx + 1]
elif op == 3:
if result < 0:
result = -1 * ((result * -1) // arr[idx + 1])
else:
result //= arr[idx + 1]
max_result = max(max_result, result)
min_result = min(min_result, result)
for i in range(4):
if ops[i] == 0:
continue
ops[i] -= 1
dfs(lis + [i])
ops[i] += 1
dfs([])
print(max_result)
print(min_result)
728x90
반응형
'CS > Algorithm 문제' 카테고리의 다른 글
[BaekJoon] 백준 21610번 마법사 상어와 비바라기 (0) | 2021.10.20 |
---|---|
[BaekJoon] 백준 14889번 스타트와 링크 (0) | 2021.10.20 |
[BaekJoon] 백준 14503번 로봇 청소기 (0) | 2021.10.19 |
[BaekJoon] 백준 14502번 연구소 (0) | 2021.10.19 |
[BaekJoon] 백준 14501번 퇴사 (0) | 2021.10.19 |