We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Data Structures
- Heap
- QHEAP1
- Discussions
QHEAP1
QHEAP1
Sort by
recency
|
417 Discussions
|
Please Login in order to post a comment
Try this One:- python3-
from sys import stdin from heapq import heappush, heappop
heap = [] # Min-heap item_lookup = set() # Set to track valid elements
def push(v): heappush(heap, v) item_lookup.add(v)
def discard(v): item_lookup.discard(v)
def print_min(): # Remove elements from heap that are no longer valid while heap[0] not in item_lookup: heappop(heap)
cmds = { 1: push, 2: discard, 3: print_min }
n = int(stdin.readline()) for _ in range(n): data = list(map(int, stdin.readline().split(" "))) cmdsdata[0]
Solution using 2 heapify mehods and maintaining a heap through vector
For all those who are having trouble with the delete operation, I hope the following link can be helpful; https://en.wikipedia.org/wiki/Binary_heap#Delete