Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 격파르타 장점
- Reverse Shuffle Merge
- 격파르타 후기
- Recursion: Davis' Staircase
- 알고리즘
- Algorithm
- 격파르타 합격후기
- DFS: Connected Cell in a Grid
- 파이썬
- Interview Preparation Kit
- Max Array Sum
- 피보나치 함수
- Special String Again
- 해커랭크
- 백준
- Find the nearest clone
- candies
- 머신러닝
- hackerrank
- 야근지수
- 구슬탈출2
- python
- Roads and Libraries
- [sqld]자격증합격
- 매칭점수
- Common Child
- 코딩테스트
- 프로그래머스
- programmers
- BFS: Shortest Reach in a Graph
Archives
- Today
- Total
Archive
[programmers] [Level3] 야근지수 본문
https://programmers.co.kr/learn/courses/30/lessons/12927
풀이
- 야근 시간 n시간, 처리해야할 업무 리스트 works를 입력으로 받음.
- 야근 지수 = n시간동안 works의 일을 처리(숫자 감소) 후 남아있는 원소의 제곱 합
- n시간동안 매번 큰 수를 찾아서 1씩 감소시킨 후 제곱합을 구하면 됨.
- 리스트의 내장함수 [].index(element)는 O(n)이기 때문에 시간초과 남.
- "리스트의 max value 찾음 -> 1 감소"를 반복하기 때문에 heapq를 사용해 O(n \log n) 으로 복잡도 줄임.
def solution(n, works):
import heapq
if sum(works) <= n :
return 0
h = []
for work in works:
# 최솟값을 제일 앞으로 저장하기 때문에 (-1)를 곱한 값을 heapq에 저장
heapq.heappush(h, (-1) * work)
for i in range(n):
num = heapq.heappop(h)
# 1 감소시킨 뒤 다시 넣음
num = (num * (-1) - 1)
heapq.heappush(h, (-1) * num)
answer = 0
for i in h:
answer += (i) * (i)
return answer
'공부 > Algorithm' 카테고리의 다른 글
[Hackerrank] [Medium] Find the nearest clone (0) | 2020.09.04 |
---|---|
[Hackerrank] [Medium] Roads and Libraries (0) | 2020.09.02 |
[Hackerrank] [Medium] Recursion: Davis' Staircase (0) | 2020.09.01 |
[Hackerrank] [Medium] Candies (0) | 2020.09.01 |
[Hackerrank] [Medium] Abbreviation (0) | 2020.09.01 |
Comments