in DS edited by
31,203 views
80 votes
80 votes

Consider the following operation along with Enqueue and Dequeue operations on queues, where $k$ is a global parameter.

MultiDequeue(Q){
    m = k
    while (Q is not empty) and (m > 0) {
        Dequeue(Q)
        m = m – 1
    }
}

What is the worst case time complexity of a sequence of $n$ queue operations on an initially empty
queue?

  1. $Θ(n)$
  2. $Θ(n + k)$
  3. $Θ(nk)$
  4. $Θ(n^2)$
in DS edited by
by
31.2k views

4 Comments

@Nikzszz actually it can’t be greater than O(n) because even if $K=2^n$ , still the while loop will run for max $n-1$ times (if we consider the worst case where all $n-1$ were $Enqueue$ operations of $O(1)$ each) and last operation was $MultiQueue(Q)$.

2
2

yeah actually we had a discussion in private channel, for what reason theta(n+k) is not a valid answer, and we come up with this conclusion that the way program is written it won’t cross O(n) no matter what value of k is it big or small. So to counter O(n+k) we come up with this, as if we put K = 2^n, Theta(n+k) will give us  2^n, but it’s not a valid answer. So that’s why theta(n+k) is not an answer to this question even if it was an MSQ question. The problem arises, because as given k is global, I thought it to be global constant, but it can be a function of the form 2^n too. So got my mistake later. Thanks @Abhrajyoti00 for replying.

3
3
edited by
Suppose at first we perform k enqueue operations i.e., calling enqueue() k times. So it takes θ(k). Now remaining queue operations are n-k. Now we call mutidequeue one time which dequeue all k elements from queue and takes another θ(k). So total θ(k)+θ(k) and the remaining queue operations are n-k-1.

Now again we repeat the above procedure. Total time would become θ(k)+θ(k)+θ(k)+θ(k) and remaining queue operations are n-k-1-k-1.

If we notice carefully then for each term after n we are getting a time complexity of θ(k). So if we count no of k-1 terms and then multiply by 2 then we get how many times we are adding θ(k). Let that count be x.

So at the end n-x(k+1)=0

or x=n/(k+1) which is approx n/k.

So total no of terms after n in the series n-k-1-k-1….. are 2n/k (because no of times k+1 occur is n/k)

So we are adding θ(k)  2n/k times.

So worst case time complexity is θ( k * (2n/k) ) which is θ(2n) or θ(n).

This can be proved intuitively. For each element we can perform one enqueue and one dequeue at max or n-1 enqueue in one go and then calling multidequeue() to dequeue all n-1 elements. So time complexity would be θ(2(n-1)) or θ(2n) or θ(n)
0
0

9 Answers

136 votes
136 votes
Best answer
There are three possible operations on queue- Enqueue, Dequeue and MultiDequeue. MultiDequeue is calling Dequeue multiple times based on a global variable $k$. Since, the queue is initially empty, whatever be the order of these operations, there cannot be more number of Dequeue operations than Enqueue operations. Hence, the total number operations will be $n$ only.

Correct Answer: $A$
edited by
by

4 Comments

Hy suppose everyone has same doubt as i did. B) O(n+k)

By intuition and visual imagination seems right.

But actually A) O(n) is logically right,

Here is my logical reasoning behind. at any point of time k is static 0<=k<=n (At max k = n)

if in worst case k = n;

O(n+k) = O(n + n) = O(2n) = O(n) || as by amortized analysis 2n == 3n == 4n ==5n is equal etc

Correct me if i am flawed.
1
1

@kritikasingh Yes, in that case the worst case time complexity would have been O(n+k) because initially there are k elements, now we Enqueue n-1 elements whose time complexity is O(n-1) = O(n). Now there are total k+n-1 elements at this moment, and now we perform 1 Multidequeue operation ,so now even if k>>n then also the loop will run k times (which was not the case in the actual question) and hence time complexity for Multidequeue operation is O(k). Hence, total time complexity in worst case would have been O(n+k).

Correct me if I am wrong.

0
0

@reboot O(2n-2) and O(n) is the same.

0
0
32 votes
32 votes
Initially the queue is empty and we have to perform n operations. i) One option is to perform all Enqueue operation s i.e. n Enqueue operations. Complexity will beθ(n) or ii) We can perform a mix of Enqueue and Dequeue operations. It can be Enqueue for first n/2 times and then Dequeue for next n/2, or Enqueue and Dequeue alternately, or any permutation of Enqueues and Dequeues totaling ‘n’ times. Complexity will be θ(n) or iii) We can perform Enqueues and MultiDequeues. A general pattern could be as follows: Enqueue Enqueue ... (ktimes) MultiDequeue Enqueue Enqueue ... (ktimes) MultiDequeue ... Up to total n ---- k items enqueued -----k items deleted----k i tems enqueued ----k items deleted -- and so on. The number of times this k-Enqueues, MutiDequeue cycle is performed So, Complexity will be k times Enqueue + 1 MultiD equeue) =n or iv) We can just perform n MultiDequeues (or n Dequeues for that matter): Each time the while condition is false (empty que ue), condition is checked just once for each of the ‘n’ operations. So θ(n).

3 Comments

Can u plz tell that for enqueueing why are we performing DEQUEUE operations .

Also how come in multidequeue u r doing enqueue operations ? when we have only DEQUEUE there ?
0
0
the example explains the situation where random enqueue and dequeue are called. DEQUEUE is not called for enqueue and vice-versa, they are separately called, and then the example calculates the complexity for that situation.
0
0
I find the exact same words in Gateforum study material  :P
0
0
26 votes
26 votes
the answer will be A , i.e theta(n)

explanation : if you read the question closely , they have said that Queue is initially empty . So , when the line "While(Q is not empty)" is checked it turns out to be false and nothing is done by " Multi-Dequeue(Q) " , hence constant time or theta(1) . According to the question , this operation is performed for n times , thus n * theta(1) = theta(n)

hope i was clear enough

4 Comments

Wrong judgement @Abir Mazumder 

Queue is initially empty and we have to perform n queue operations (i.e Enqueue, Dequeue, Multidequeue), then we have to take the worst case among all the operations.

4
4
Actual queston asked in gate

What is the worst case time complexity of a sequence of n MultiDequeue() operations on an initially empty queue? (GATE CS 2013)

He answered according to this
0
0

@Nandkishor3939 Have you seen GATE-2013-44 question in official question paper? Kindly do that.

 

1
1
7 votes
7 votes
initially queue is empty and hence while loop will never going to be executed and therefore time complexity is not going to be depend on k, and thus it will be only O(n).

1 comment

Here the multideque operation is depends upon the number of elements present in the queue and the the value of k...and worst case happens when value of k is equal to the number of elements present in that queue...
0
0
Answer:

Related questions