티스토리 뷰
https://www.acmicpc.net/problem/14888
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
32
33
34
35
36
|
from copy import deepcopy
n = int(input())
arr = list(map(int, input().split()))
operators = list(map(int, input().split()))
answer = [-int(1e9), int(1e9)]
def dfs(operand, used, index):
if index == n:
if operand > answer[0]:
answer[0] = operand
if operand < answer[1]:
answer[1] = operand
return
for i in range(4):
if used[i] < operators[i]:
tmp_used = deepcopy(used)
tmp_used[i] += 1
if i == 0:
dfs(operand + arr[index], tmp_used, index + 1)
elif i == 1:
dfs(operand - arr[index], tmp_used, index + 1)
elif i == 2:
dfs(operand * arr[index], tmp_used, index + 1)
else:
num = abs(operand) // arr[index]
if operand < 0:
num *= -1
dfs(num, tmp_used, index + 1)
dfs(arr[0], [0, 0, 0, 0], 1)
print(answer[0])
print(answer[1])
|
cs |
전형적인 dfs문제.
연산자를 몇 번이나 사용했는지 저장하는 리스트를 사용하면서, 사용 횟수를 넘지 않도록 한다.
주의할 점은, 음수를 나누는 연산을 할 때, 문제의 설명에 따라 잘 해야 한다는 것.
'algorithm'''problem solve' 카테고리의 다른 글
[백준] 16234 - 인구 이동 (PyPy3, DFS) (0) | 2020.10.04 |
---|---|
[백준] 18428 - 감시 피하기 (구현, 조합) (0) | 2020.10.04 |
[프로그래머스] 괄호 변환 (DFS, 구현, 카카오) (0) | 2020.10.04 |
[백준] 18405 - 경쟁적 전염 (BFS) (0) | 2020.10.04 |
[백준] 14502 - 연구소 (DFS, 완전탐색) (0) | 2020.10.04 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 알고리즘
- 구현
- 1932
- 인공지능
- 컨트리뷰톤
- DFS
- 코딩
- 프로그래머스
- 오픈소스
- 이분탐색
- PyPy3
- 피보나치
- 백트래킹
- Dynamic Programming
- 카카오
- webOS
- 동적 계획법
- 플로이드 와셜
- 파이썬
- c++
- DP
- LG
- 백준
- c
- 완전탐색
- 한화큐셀
- 정렬
- BaekJoon
- BFS
- 브루트포스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함