일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 파이썬
- DateTime
- 그리디
- 카카오
- 정규식
- 이분탐색
- programmers
- 수학
- heapq
- lambda
- 백준
- 동적 계획법
- Re
- Combinations
- 정렬
- 자바
- divmod
- java
- dfs
- python
- 재귀함수
- 프로그래머스
- Zip
- 추석맞이 코딩챌린지
- 위클리 챌린지
- 다익스트라
- Set
- backjoon
- KAKAO BLIND RECRUITMENT
- BFS
Archives
- Today
- Total
상상쓰
[프로그래머스] 8주차_최소직사각형 본문
https://programmers.co.kr/learn/courses/30/lessons/86491
가로를 기준으로 하면 가로는 큰 것 중에서 가장 큰 것, 세로는 작은 것 중에서 가장 큰 것으로 크기를 설정하고 넓이를 구하면 된다.
def solution(sizes):
answer = 0
weight, length = 0, 0
for w, l in sizes:
weight = max(weight, max(w, l))
length = max(length, min(w, l))
answer = weight * length
return answer
print(solution([[60, 50], [30, 70], [60, 30], [80, 40]])) # 4000
'Coding Test' 카테고리의 다른 글
[백준] 배 (0) | 2021.09.29 |
---|---|
[백준] 카드 구매하기 (0) | 2021.09.28 |
[백준] 쉽게 푸는 문제 (0) | 2021.09.23 |
[추석맞이 코딩챌린지 Bonus] 공격할 수 없는 Queen (0) | 2021.09.21 |
[추석맞이 코딩챌린지③] 블랙잭 (0) | 2021.09.21 |
Comments