300x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- dp
- kick start
- 백준
- 프로그래밍
- google coding competition
- 순열
- nlp
- 킥스타트
- BFS
- 네트워크
- 딥러닝
- 프로그래머스
- 코딩 테스트
- 동적 프로그래밍
- 리눅스
- 코딩
- 운영체제
- 코딩테스트
- AI
- linux
- 구글 킥스타트
- 알고리즘
- PYTHON
- 동적프로그래밍
- 파이썬
- DFS
- 브루트포스
- CSS
- OS
- 그래프
Archives
- Today
- Total
오뚝이개발자
[백준14888] 연산자 끼워넣기 본문
728x90
300x250
문제
https://www.acmicpc.net/problem/14888
생각의 흐름
- +,-,*,//에 각각 1,2,3,4를 넘버링하여 각 연산자의 갯수만큼 리스트에 채운다.
- 이들의 순열을 이용하여 가능한 모든 연산의 경우의 수를 구한다.
- 비교하며 최솟값, 최댓값을 찾는다.
코드
from itertools import permutations
N = int(input())
A = list(map(int, input().split()))
plus, minus, multiple, division = map(int, input().split())
operation_list = []
operation_list += [1]*plus
operation_list += [2]*minus
operation_list += [3]*multiple
operation_list += [4]*division
operation_set = []
for numbers in list(permutations(operation_list, )):
operation_set.append(numbers)
operation_set = list(set(operation_set))
max_answer = -1000000001
min_answer = 1000000001
for case in operation_set:
answer = A[0]
for i in range(N-1):
if case[i] == 1:
answer += A[i+1]
elif case[i] == 2:
answer -= A[i+1]
elif case[i] == 3:
answer *= A[i+1]
else:
if answer<0:
answer = -(-answer//A[i+1])
else:
answer //= A[i+1]
if answer<min_answer:
min_answer = answer
if answer>max_answer:
max_answer = answer
print(max_answer)
print(min_answer)
728x90
300x250
'코딩 테스트 > 백준' 카테고리의 다른 글
[백준1182] 부분수열의 합 (0) | 2020.03.10 |
---|---|
[백준1759] 암호 만들기 (0) | 2020.03.09 |
[백준6603] 로또 (0) | 2020.03.09 |
[백준10971] 외판원 순회 2 (0) | 2020.03.09 |
[백준10819] 차이를 최대로 (0) | 2020.03.09 |
Comments