Exact algorithms for NP-complete problems are sometimes feasible, if the input is small enough.
I’ve also came across some algorithms which are not practical even for very small inputs, and their importance is questionable.
I’m wondering what's the "hardest" (time complexity-wise) problems people have worked on its exact solution:
- The problem is in NP.
- A non-trivial exact algorithm is known for the problem (preferably from the last few years).
- No better algorithm is known.
For example, the minimum dominating set of queens has an algorithm which runs in $O(39.51^n\cdot poly(n))$ time.
I'm not looking for NP-hard questions with no better algorithm than the trivial.
I'm looking for questions (NP-complete or not) which people have devised a complex exact algorithm for, even though it's run time is not practical even for very short inputs.
– R B Jan 20 '14 at 06:43The algorithm finds triangle in time $O(|E|^{1.408})$ which is clearly better than $O(|V|^\omega)$ for any graph.
– R B Jan 20 '14 at 06:46If someone spent time constructing a non-trivial algorithm with runtime n!! I find it interesting, and I'm trying to understand how much research is done on such problems.
– R B Jan 20 '14 at 12:54