ํฐ์คํ ๋ฆฌ ๋ทฐ
๐ฉ๐ป๐ป ๋ฌธ์
โ๐ป ํ์ด
๐จ Go
// https://www.acmicpc.net/problem/11279
// ์ต๋๊ฐ์ ๋น ๋ฅด๊ฒ ๋ฝ๋ ์๋ฃ๊ตฌ์กฐ๋ฅผ ๋ฐฐ์ฐ๋ ๋ฌธ์
package main
import (
"bufio"
"fmt"
"os"
)
func main() {
reader := bufio.NewReader(os.Stdin)
writer := bufio.NewWriter(os.Stdout)
defer writer.Flush()
var n int
fmt.Fscanln(reader, &n)
var heap Heap
heap.heapArr = make([]uint, n+1)
for i := 0; i < n; i++ {
var x uint
fmt.Fscanln(reader, &x)
if x == 0 {
fmt.Fprintln(writer, heap.deleteHeap())
} else {
heap.insertHeap(x)
}
}
}
type Heap struct {
heapArr []uint
numOfData int
}
// deleteHeap: ํ์์ ๋ฐ์ดํฐ ์ญ์ .
// ํ์ ๋ง์ง๋ง ๋
ธ๋๋ฅผ ๋ฃจํธ ๋
ธ๋์ ์์น์ ์ฌ๋ฆฐ ๋ค์,
// ์์ ๋
ธ๋์์ ๋น๊ต๊ณผ์ ์ ๊ฑฐ์น๋ฉด์ ์์ ์ ์์น๋ฅผ ์ฐพ์ ๋๊น์ง ๋ด๋ฆฐ๋ค.
func (heap *Heap) deleteHeap() (delVal uint) {
if heap.numOfData == 0 {
return
}
delVal = heap.heapArr[1]
lastVal := heap.heapArr[heap.numOfData]
var parentIdx int = 1 // ๋ง์ง๋ง ๋
ธ๋๊ฐ ์ ์ฅ๋ ์ธ๋ฑ์ค
var childIdx int = heap.getPriorityChildIdx(parentIdx)
for childIdx != -1 { // ์์ ๋
ธ๋๊ฐ ์กด์ฌํ๋ ๋์ ๋ฐ๋ณต
if lastVal > heap.heapArr[childIdx] { // ๋ง์ง๋ง ๋
ธ๋๊ฐ ์ฐ์ ์์๊ฐ ๋์ ๊ฒฝ์ฐ ๋ฐ๋ณต๋ฌธ ํ์ถ
break
}
heap.heapArr[parentIdx] = heap.heapArr[childIdx]
parentIdx = childIdx
childIdx = heap.getPriorityChildIdx(parentIdx)
}
heap.heapArr[parentIdx] = lastVal
heap.numOfData--
return
}
// getPriorityChildIdx:
// ์์ ๋
ธ๋ ์ค ์ฐ์ ์์๊ฐ ๋์ ์์์ ์ธ๋ฑ์ค ๋ฐํ.
// ์์ ๋
ธ๋๊ฐ ์กด์ฌํ์ง ์๋ ๊ฒฝ์ฐ -1์ ๋ฐํํ๋ค.
func (heap *Heap) getPriorityChildIdx(parentIdx int) int {
if parentIdx*2 > heap.numOfData {
return -1
} else if parentIdx*2 == heap.numOfData {
return parentIdx * 2
} else {
if heap.heapArr[parentIdx*2] < heap.heapArr[parentIdx*2+1] {
return parentIdx*2 + 1
}
return parentIdx * 2
}
}
// insertHeap: ํ์ ๋ฐ์ดํฐ ์ ์ฅ.
// ๋ง์ง๋ง ๋
ธ๋์์๋ถํฐ ๋ถ๋ชจ ๋
ธ๋์ ์ฐ์ ์์ ๋น๊ต๊ณผ์ ์ ๊ฑฐ์ณ ์์ ์ ์์น๋ฅผ ์ฐพ๋๋ค.
func (heap *Heap) insertHeap(x uint) {
heap.numOfData++
var idx = heap.numOfData // ์ ์์๊ฐ ์ ์ฅ๋ ์ธ๋ฑ์ค ๊ฐ์ idx์ ์ ์ฅ
// ์ ์์๊ฐ ์ ์ฅ๋ ์์น๊ฐ ๋ฃจํธ ๋
ธ๋์ ์์น๊ฐ ์๋ ๊ฒฝ์ฐ ๋ฐ๋ณต
for idx != 1 {
// ์ ๋
ธ๋์ ๋ถ๋ชจ ๋
ธ๋์ ์ฐ์ ์์ ๋น๊ต
if x > heap.heapArr[idx/2] { // ์ ๋
ธ๋์ ์ฐ์ ์์๊ฐ ๋๋ค๋ฉด
heap.heapArr[idx] = heap.heapArr[idx/2] // ๋ถ๋ชจ ๋
ธ๋๋ฅผ ํ ๋ ๋ฒจ ๋ด๋ฆฐ๋ค
idx = idx / 2 // ์ ๋
ธ๋๋ฅผ ํ ๋ ๋ฒจ ์ฌ๋ฆฌ๊ธฐ ์ํด ์ธ๋ฑ์ค ๊ฐ ๊ฐฑ์
} else { // ์ ๋
ธ๋์ ์ฐ์ ์์๊ฐ ๋์ง ์๋ค๋ฉด
break
}
}
heap.heapArr[idx] = x // ์ ๋
ธ๋๋ฅผ ๋ฐฐ์ด์ ์ ์ฅ
}
๐จ Python3
# https://www.acmicpc.net/problem/11279
# ์ต๋๊ฐ์ ๋น ๋ฅด๊ฒ ๋ฝ๋ ์๋ฃ๊ตฌ์กฐ๋ฅผ ๋ฐฐ์ฐ๋ ๋ฌธ์
"""
heapq ๋ชจ๋ ํ์ฉ:
heapq ๋ชจ๋์ ๊ฐ์ฅ ์์ ๊ฐ์ ๋ฃจํธ๋ก ๊ฐ๋๋ค.
๊ทธ๋ฌ๋ฏ๋ก ๋ํดํธ๋ก ์ ๊ณตํ๋ ์๋ฃ๊ตฌ์กฐ๋ ์ต์ ํ์ด๋ค.
-> ์ต๋ ํ์ ๊ตฌํํ๋ ค๋ฉด, ๊ฐ ์
๋ ฅ ๋๋ ์ถ๋ ฅ์ ๋ง์ด๋์ค๋ฅผ ๊ณฑํ์ฌ ๋ถํธ๋ฅผ ๋ฐ๊ฟ์ฃผ๋ฉด ๋๋ค.
"""
import sys, heapq
if __name__ == "__main__":
n = int(sys.stdin.readline())
h = []
for i in range(n):
x = int(sys.stdin.readline())
if x == 0:
if len(h) == 0:
print(0)
else:
print(-1*heapq.heappop(h))
else:
heapq.heappush(h, -1*x)
728x90
'dev > algorithm' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
BOJ / 11286๋ฒ / ์ ๋๊ฐ ํ [Go][Python3] (0) | 2020.11.30 |
---|---|
BOJ / 1927๋ฒ / ์ต์ ํ [Go][Python3] (0) | 2020.11.29 |
BOJ / 1764๋ฒ / ๋ฃ๋ณด์ก [Go][Python3] (0) | 2020.11.27 |
BOJ / 10815๋ฒ / ์ซ์ ์นด๋ [Go][Python3] (0) | 2020.11.26 |
BOJ / 2110๋ฒ / ๊ณต์ ๊ธฐ ์ค์น [Go][Python3] (0) | 2020.11.25 |
๋๊ธ
๊ธ ๋ณด๊ดํจ
์ต๊ทผ์ ๋ฌ๋ฆฐ ๋๊ธ
TAG
- ๋งฅ๋ถ
- java
- ๋ฐ๋
- ํ๋ก์ด๋์์ฌ
- ์ด๋ถํ์
- AWS
- python3
- ์๊ฐ๊ต์ฒด
- ๋ถํ ์ ๋ณต
- ballet
- Algorithm
- baekjoon
- dp
- dfs
- ๋งฅ๋ถ ์ ๊ทธ๋ ์ด๋
- BFS
- Golang
- ๋ชฝ๊ณ ๋๋น
- ๋ธ๋ฃจํธํฌ์ค
- ์๋ฐ
- ํ
- ์๊ณ ๋ฆฌ์ฆ
- ์คํ
- Macbook pro 2012 mid 13
- ํด์๋งต
- MongoDB
- go
- BOJ
- ๋ฐฑ์ค
- ๋งฅ๋ถํ๋ก
- Total
- Today
- Yesterday