In the EXACT 4SAT problem, the input is a set of clauses, each of which is a
disjunction of exactly four literals, and such that each variable occurs at most
once in each clause. The goal is to find a satisfying assignment, if one exists.
Prove that EXACT 4SAT is NP-complete.
因为EXACT 4SAT 属于 NP,只要再证实4SAT的 NP 彻底性便可。作法是将 3SAT 归约到 EXACT 4SAT。算法
归约完成。证毕。input
主要应用了归约的思想。it