https://www.acmicpc.net/problem/2798
n, m = map(int, input().split())
arr = list(map(int, input().split()))
maxValue = 0
stack = []
def dfs():
global maxValue
if len(stack) == 3: # 3장의 카드
total = 0
for value in stack: # 카드의 합 구하기
total += arr[value]
if maxValue < total and total <= m: # m의 수를 넘지 않으면서, 최대값 구하기
maxValue = total
else:
for idx in range(n):
if idx not in stack:
stack.append(idx)
dfs()
stack.pop()
dfs()
print(maxValue)
'코딩테스트 > 백준' 카테고리의 다른 글
[백준] 12015번 가장 긴 증가하는 부분수열2 - 이분탐색, LIS (0) | 2022.09.14 |
---|---|
[백준] 10815번 숫자카드 - 이분탐색 (0) | 2022.09.13 |
[백준] 14888번 연산자 끼워넣기 - dfs, 백트래킹 (0) | 2022.09.12 |
[백준] 14889번 스타트와 링크 - dfs, 백트래킹 (0) | 2022.09.12 |
[백준] 10819번 차이를 최대로 - dfs, 백트래킹 (0) | 2022.09.11 |