You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Put items in PQ, each time take out K items; Decrement each count value and then put back; Edge condition: Total number of items in count, count remaining ones
Error1: Missed the edge case on K == 0
Error2: Did not handle the edge case: "abb", 2 - Output: "ab", expected "bab"
Read my previous answer, the basic idea is correct. However, edge cases (two above) are not handled correctly.
Calculate histogram. If current len(histogram) > n then no idle otherwise use idle to pad the missing entries.
Error1: cool down period n is actually smaller than interval
classSolution:
defleastInterval(self, tasks: List[str], n: int) ->int:
# calculate histogramhistogram=collections.Counter(tasks)
maxHeap= []
forkey, valueinhistogram.items():
heapq.heappush(maxHeap, (-value, key))
n+=1# repeat the loop until maxHeap becomes emptyresult=0whilemaxHeap:
thisRound=0fromHeap=min(len(maxHeap), n)
# for each round take first n items from heap# decrement and put backqueue= []
result+=fromHeapforiinrange(fromHeap):
negValue, key=heapq.heappop(maxHeap)
ifnegValue+1!=0:
queue.append((negValue+1, key))
foriteminqueue:
heapq.heappush(maxHeap, item)
iffromHeap<nandlen(maxHeap) >0:
# when the heap size is smaller than n, use idle to padresult+=n-fromHeapreturnresult
Put items inside PQ, each time take out two different items from heap. Decrement and then put back in PQ. Since complexity O(10^9 * 10^5) = O(10^14)
Decrement is too small step in 1. Minus the biggest with the second biggest element and then put back in PQ. However, this solution does not work because it is incorrect in some cases
Read the answer:
The only exceptional case where not all milestones could be finished is when the biggest is too big.
So the problem reduces to an edge case handling math problem...... Totally unexpected.