일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- C언어
- 자바스크립트
- 프로그래머스
- level 3
- bfs
- Java
- Lv. 0
- dfs
- DP
- 동적계획법
- 오블완
- SQL
- programmers
- join
- SQL 고득점 KIT
- Python
- 너비 우선 탐색
- Lv. 2
- select
- LEVEL 2
- 깊이 우선 탐색
- 파이썬
- group by
- Lv. 1
- 소프티어
- javascript
- Dynamic Programming
- Lv. 3
- 티스토리챌린지
- softeer
- Today
- Total
목록힙 (5)
몸과 마음이 건전한 SW 개발자
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/42626 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드import heapqdef solution(scoville, K): answer = 0 heap = [] for s in scoville: heapq.heappush(heap, s) while heap and heap[0] 풀이 방법heap에 scoville을 전부 넣는다.heapq.heapify(scoville)로 scoville을 heap..
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/142085 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드 import heapq def solution(n, k, enemy): answer = 0 cntR = len(enemy) if cntR front: if front > n: break n -= heapq.heappop(q) heapq.heappush(q, nextV) else: if nextV > n: break else: n -= nextV if j == cntR - 1..
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/155651 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드 def solution(book_time): newBookTime = [] for bts, bte in book_time: nbts = bts.split(":") nbte = bte.split(":") newBookTime.append([int(nbts[0])*60+int(nbts[1]), int(nbte[0])*60+int(nbte[1])]) visited = [0 for..
구현 class heapq { constructor() { this.heap = []; }; size() { return this.heap.length; }; swap(left, right) { [this.heap[left], this.heap[right]] = [this.heap[right], this.heap[left]]; }; heappush(value) { this.heap.push(value); this.bubbleUp(); }; bubbleUp() { let son = this.heap.length - 1; let parent = Math.floor((son - 1) / 2); while (parent >= 0 && this.heap[son] < this.heap[parent]) { this...
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/42628 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드 import heapq def solution(operations): maxHeap = [] minHeap = [] for operation in operations: oper, number = operation.split() number = int(number) if oper == "I": heapq.heappush(maxHeap, -number) heapq.heappush..