일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Zip
- 추석맞이 코딩챌린지
- java
- 그리디
- Combinations
- 프로그래머스
- 재귀함수
- divmod
- 파이썬
- KAKAO BLIND RECRUITMENT
- python
- 백준
- 정규식
- 정렬
- Re
- 수학
- backjoon
- programmers
- 이분탐색
- DateTime
- lambda
- dfs
- 동적 계획법
- Set
- BFS
- 위클리 챌린지
- 자바
- 다익스트라
- 카카오
- heapq
Archives
- Today
- Total
상상쓰
[프로그래머스] 12주차_피로도 본문
https://programmers.co.kr/learn/courses/30/lessons/87946
위클리 챌린지 마지막 12주차 문제이다.
permutations 를 이용하여 던전을 탐험하는 순서에 대한 모든 경우의 수를 구하여 경우마다 탐험할 수 있는 던전의 수를 구한다. 최댓값을 반환하면 된다.
from itertools import permutations
def solution(k, dungeons):
answer = 0
for condition in permutations([i for i in range(len(dungeons))]):
kTemp, ansTemp = k, 0
for index in condition:
minimumRequired, consumption = dungeons[index]
if kTemp >= minimumRequired:
kTemp -= consumption
ansTemp += 1
answer = max(answer, ansTemp)
return answer
print(solution(80, [[80, 20], [50, 40], [30, 10]])) # 3
'Coding Test' 카테고리의 다른 글
[백준] 괄호의 값 (0) | 2021.10.27 |
---|---|
[백준] 연산자 끼워넣기 (0) | 2021.10.26 |
[프로그래머스] 내적 (0) | 2021.10.22 |
[프로그래머스] 공 이동 시뮬레이션 (0) | 2021.10.21 |
[프로그래머스] 11주차_아이템 줍기 (2) | 2021.10.20 |
Comments