The correct option is A Θ(log nlog log n)
If we have an array of x elements then time complexity to sort x elements using heap sort is
Θ(x log x)
We need to find value of x so that time complexity to sort x elements gets
Θ(log n)
we can direct discard option (a) and (d).
Now check option (c)
=Θ(log nlog log nlog(log nlog log n))
=Θ(log nlog log n(log log n−log log log n))
=Θ(log n(log log n− log log log log nlog log n))
=Θ(log n)