| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 월간
- 매일
- 3줄정리
- 화상영어
- Daily Challenge
- 괜찮음
- 읽기
- 스탭퍼
- 미드시청
- 30분
- 영어원서읽기
- 사이드
- 쓰릴오브파이트
- leetcode
- Writing
- FIT XR
- 파비최
- 운동
- realclass
- 만화도
- Problem Solving
- 프로젝트
- 10분
- English
- 영어공부
- 뭐든
- 링피트
- 리얼 클래스
- 개발자
- 잡생각
Archives
- Today
- Total
파비의 매일매일 공부기록
Today's Challenge 본문
class Solution:
def maxPerformance(self, n: int, speed: List[int], efficiency: List[int], k: int) -> int:
cur_sum, h = 0, []
ans = -float('inf')
for i, j in sorted(zip(efficiency, speed), reverse=True):
while len(h) > k-1:
cur_sum -= heappop(h)
heappush(h, j)
cur_sum += j
ans = max(ans, cur_sum * i)
return ans % (10**9+7)
https://leetcode.com/problems/maximum-performance-of-a-team/
Maximum Performance of a Team - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
힙을 활용해서 푸는 문제.
반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
| Today's Challenge (0) | 2022.09.13 |
|---|---|
| Today's Challenge (0) | 2022.09.12 |
| Today's Challenge (0) | 2022.09.10 |
| Today's Challenge (0) | 2022.09.09 |
| Today's Challenge (0) | 2022.09.08 |
Comments