In d-Scattered Set we are given an (edge-weighted) graph and are asked to select at least k vertices, so that the distance between any pair is at least d, thus generalizing Independent Set. We provide upper and lower bounds on the complexity of this problem with respect to various standard graph parameters. In particular, we show the following:• For any d ≥ 2, an O * (d tw )-time algorithm, where tw is the treewidth of the input graph and a tight SETH-based lower bound matching this algorithm's performance. These generalize known results for Independent Set.• d-Scattered Set is W[1]-hard parameterized by vertex cover (for edge-weighted graphs), or feedback vertex set (for unweighted graphs), even if k is an additional parameter.• A single-exponential algorithm parameterized by vertex cover for unweighted graphs, complementing the above-mentioned hardness.• A 2 O(td 2 ) -time algorithm parameterized by tree-depth (td), as well as a matching ETHbased lower bound, both for unweighted graphs.We complement these mostly negative results by providing an FPT approximation scheme parameterized by treewidth. In particular, we give an algorithm which, for any error parameter > 0, runs in time O * ((tw/ ) O(tw) ) and returns a d/(1+ )-scattered set of size k, if a d-scattered set of the same size exists. arXiv:1709.02180v4 [cs.CC] 10 Nov 2018Our contribution: First, in Section 3 we present a lower bound of (d − ) tw · n O(1) on the complexity of any algorithm solving d-Scattered Set parameterized by tw, based on the Strong Exponential Time Hypothesis (SETH [19,20]). This result can be seen as a non-trivial extension of the bound of (2 − ) tw · n O(1) for Independent Set ([24]) for larger values of d, for which the construction is required to be much more compact in terms of encoded information per unit of treewidth. Next, in Section 4 we provide a dynamic programming algorithm of running time O * (d tw ), matching this lower bound, over a given tree decomposition of width tw. The algorithm actually solves the counting version of d-Scattered Set, making use of standard techniques (dynamic programming on tree decompositions), with an application of the fast subset convolution technique of [2] (or state changes [7,30]) to bring the running time down to match the size of the dynamic programming tables.Having thus identified the complexity of the problem with respect to tw, we next focus on the more restrictive parameters vc and fvs and we show in Section 5 that the edge-weighted d-Scattered Set problem parameterized by vc + k is W[1]-hard. If, on the other hand, all edge-weights are set to 1, then d-Scattered Set (the unweighted variant) parameterized by fvs + k is W[1]-hard. Our reductions also imply lower bounds based on the Exponential Time Hypothesis (ETH [19,20]), yet we do not believe these to be tight, due to the quadratic increase in parameter size (as the construction's focus lies on the edges). One observation we can make is that there are few cases where we can expect to obtain an FPT algorithm without bounding the va...