The subset-sum problem is defined as follows:
Given a set S of n positive integers and a positive integer W; determine whether there is a subset of S whose elements sum to W.
An algorithm Q solves this problem in O(nW) time. Which of the following statements is false?