2

Supposing if a problem with $n$ non-deterministic bits is in $O(2^{\alpha n})$ time at every $\alpha\in(0,1)$ then is there evidence that problem can or cannot be $\mathsf{NP}$-complete?

Juho
  • 22,905
  • 7
  • 63
  • 117
Turbo
  • 2,947
  • 14
  • 27

1 Answers1

2

Yes, such problems can be NP-complete.

Consider classical NP-complete graph problems like clique.

Clique has an $O(2^n)$ time algorithm, where $n$ is the number of vertices. However the input for clique is the adjacency matrix of the graph, which has $n^2$ bits. Therefore when the size of input is measured in bits, clique has an $O(2^\sqrt{n})$ time algorithm, which is $O(2^{\alpha n})$ for any positive $\alpha$.

Laakeri
  • 1,339
  • 1
  • 10
  • 19