Tagged Questions
10
votes
3answers
484 views
The complexity of verifying solutions to NP-hard optimization problems?
(This may be a better fit at cstheory, but I figure that it's probably not a research-level topic.)
There are many optimization problems that are known to be NP-hard, such as the traveling salesman ...
8
votes
3answers
705 views
Lower bound on heapsort?
It's well-known that the worst-case runtime for heapsort is Ω(n lg n), but I'm having trouble seeing why this is. In particular, the first step of heapsort (making a max-heap) takes time ...
3
votes
5answers
50 views
Regarding complexity (if comparison based sorting algorithm used)
as we all know that any sorting algorithm based on comparison model has lower bound of nlogn i.e Omega(nlogn).
which can be proved mathematically.
but as we all know dutch flag problem can sort 3 ...
3
votes
1answer
234 views
Implementation of C lower_bound
Based on the following definition found here
Returns an iterator pointing to the
first element in the sorted range
[first,last) which does not compare
less than value. The comparison is
...
3
votes
2answers
211 views
Pixies in the custard swamp puzzle
(With thanks to Rich Bradshaw)
I'm looking for optimal strategies for the following puzzle.
As the new fairy king, it is your duty to map the kingdom's custard swamp.
The swamp is covered in an ...
1
vote
2answers
348 views
What are the rules for the “Ω(n log n) barrier” for sorting algorithms?
I wrote a simple program that sorts in O(n). It is highly memory inefficient, but that's not the point.
It uses the principle behind a HashMap for sorting:
public class NLogNBreak {
public ...
1
vote
1answer
219 views
How can I prove a lower bound that is \Omega{(n (logn)^k)} ? [k>1]
There are many algorithms run in O(n {log n}^k)-time, where k>1.
It would be very helpful if you could provide me some reference about any problem
that has:
\Omega{(n {log n}^k)} lower bound, ...
1
vote
3answers
191 views
Optimality of Binary Search
This may be a silly question, but does anyone know of a proof that binary search is asymptotically optimal? That is, if we are given a sorted list of elements where the only permitted operation on ...