반응형
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 |
Tags
- @P0
- softeer
- 연결요소
- msSQL
- 처우협의
- 파라메트릭
- 퇴사통보
- 소프티어
- upper_bound
- OFFSET
- 백트래킹
- 성적평가
- BOJ
- boj #19237 #어른 상어
- 처우산정
- 경력
- incr
- Kafka
- compose
- 이분탐색
- 6987
- 오퍼레터
- dfs
- 매개변수탐색
- BFS
- 13908
- Docker
- 기술면접
- 백준
- 물채우기
Archives
- Today
- Total
기술 블로그
11279번 최대 힙 본문
728x90
반응형
최대 힙 구현 문제이다.
구현 과정, 논리(로직)를 익숙해지도록 구현해봐야겠다.
https://www.acmicpc.net/problem/11279
<C++로 구현한 최대 힙>
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | #include <iostream> #include <queue> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> using namespace std; vector<int> heap; // 정수를 담는 최대 힙 heap에 새 원소 newValue를 삽입한다. void push_heap(int newValue) { // 힙 맨 끝에 newValue를 삽입한다. heap.push_back(newValue); // 현재 newValue의 위치 int index = heap.size() - 1; // 루트에 도달하거나, newValue 이상의 원소를 가진 조상을 만날 때 까지 진행 while (index > 0 && heap[(index - 1) / 2] < heap[index]) { swap(heap[index], heap[(index - 1) / 2]); index = (index - 1) / 2; } } // 맨 위의 루트 노드에서 하나씩 내려가면서 비교하면서 힙 모양 만들기 int pop_heap() { // heap 비어있으면, 0을 return if (heap.empty()) return 0; // 반환 할, 제일 큰 원소 int ret = heap[0]; // heap의 맨 끝에서 값을 가져와서 루트에 덮어 씌운다. heap[0] = heap.back(); // 맨 끝 heap 삭제 heap.pop_back(); int here = 0; while (true) { int left = 2 * here + 1; // 왼쪽 자식 int right = 2 * here + 2; // 오른쪽 자식 // 리프에 도달한 경우 if (left >= heap.size()) break; // heap[here]가 내려갈 위치를 찾는다. int next = here; if (heap[next] < heap[left]) { next = left; } if (right < heap.size() && heap[next] < heap[right]) { next = right; } // 위에서 next가 갱신되지 않았다면 if (next == here) break; swap(heap[here], heap[next]); here = next; } return ret; } int main(void) { int N = 0; scanf("%d", &N); while (N--) { int x = 0; scanf("%d", &x); if (x == 0) printf("%d\n", pop_heap()); else if (x >= 1) push_heap(x); } return 0; } | cs |
<C로 구현한 최대 힙>
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | #include <stdio.h> #include <stdlib.h> #include <malloc.h> #include <string.h> int *heap; int N = 0; int last_index = -1; // 정수를 담는 최대 힙 heap에 새 원소 newValue를 삽입한다. void push_heap(int newValue) { // 힙 맨 끝에 newValue를 삽입한다. heap[++last_index] = newValue; // 현재 newValue의 위치 int index = last_index; while (index > 0 && heap[(index - 1) / 2] < heap[index]) { int temp = 0; temp = heap[(index - 1) / 2]; heap[(index - 1) / 2] = heap[index]; heap[index] = temp; index = (index - 1) / 2; } } // 맨 위의 루트 노드에서 하나씩 내려가면서 비교하면서 힙 모양 만들기 int pop_heap() { // heap 비어있으면, 0을 return if (heap[0] == -1) return 0; // 반환 할, 제일 큰 원소 int ret = heap[0]; // heap의 맨 끝에서 값을 가져와서 루트에 덮어 씌운다. heap[0] = heap[last_index]; // 맨 끝 heap 삭제 heap[last_index] = -1; --last_index; int here = 0; while (1) { int left = 2 * here + 1; // 왼쪽 자식 int right = 2 * here + 2; // 오른쪽 자식 // 리프에 도달한 경우 if (left >= last_index + 1) break; // heap[here]가 내려갈 위치를 찾는다. int next = here; if (heap[next] < heap[left]) { next = left; } if (right < last_index + 1 && heap[next] < heap[right]) { next = right; } // 위에서 next가 갱신되지 않았다면 if (next == here) break; int temp = heap[here]; heap[here] = heap[next]; heap[next] = temp; here = next; } return ret; } int main(void) { scanf("%d", &N); heap = (int*)malloc(sizeof(int)*N); memset(heap, -1, sizeof(heap)); while (N--) { int x = 0; scanf("%d", &x); if (x == 0) printf("%d\n", pop_heap()); else if (x >= 1) { push_heap(x); } } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
10815번 숫자 카드 (0) | 2018.08.28 |
---|---|
1920번 수 찾기 (0) | 2018.08.27 |
1182번 부분집합의 합 (0) | 2018.08.26 |
15649번 N과 M (1) (0) | 2018.08.26 |
2589번 보물섬 (0) | 2018.08.25 |