P-complete

In complexity theory, the notion of P-complete decision problems is useful in the analysis of both:

  1. which problems are difficult to parallelize effectively, and;
  2. which problems are difficult to solve in limited space.

Formally, a decision problem is P-complete (complete for the complexity class P) if it is in P and that every problem in P can be reduced to it by using an appropriate reduction.

The specific type of reduction used varies and may affect the exact set of problems. If we use NC reductions, that is, reductions which can operate in polylogarithmic time on a parallel computer with a polynomial number of processors, then all P-complete problems lie outside NC and so cannot be effectively parallelized, under the unproven assumption that NCP. If we use the weaker log-space reduction, this remains true, but additionally we learn that all P-complete problems lie outside L under the weaker unproven assumption that LP. In this latter case the set P-complete may be smaller.

Read more about P-complete:  Motivation, P-complete Problems, Problems Not Known To Be P-complete