# A New Fully Polynomial Time Approximation Scheme for the Interval Subset   Sum Problem

**Authors:** Rui Diao, Ya-Feng Liu, Yu-Hong Dai

arXiv: 1704.06928 · 2017-04-25

## TL;DR

This paper introduces a new fully polynomial time approximation scheme (FPTAS) for the interval subset sum problem, improving efficiency and space complexity over previous methods while effectively solving large instances.

## Contribution

The paper presents a novel FPTAS for ISSP with reduced space complexity and comparable time complexity, addressing the problem's NP-hardness and enabling large-scale solutions.

## Key findings

- The proposed FPTAS has time complexity ${m O}(n 	imes 	ext{max}igracevert 1/	ext{epsilon}, 	ext{log} nig)$.
- The space complexity of the scheme is ${m O}(n + 1/	ext{epsilon})$, significantly lower than previous methods.
- The scheme successfully solves large instances with 100,000 variables within one second.

## Abstract

The interval subset sum problem (ISSP) is a generalization of the well-known subset sum problem. Given a set of intervals $\left\{[a_{i,1},a_{i,2}]\right\}_{i=1}^n$ and a target integer $T,$ the ISSP is to find a set of integers, at most one from each interval, such that their sum best approximates the target $T$ but cannot exceed it. In this paper, we first study the computational complexity of the ISSP. We show that the ISSP is relatively easy to solve compared to the 0-1 Knapsack problem (KP). We also identify several subclasses of the ISSP which are polynomial time solvable (with high probability), albeit the problem is generally NP-hard. Then, we propose a new fully polynomial time approximation scheme (FPTAS) for solving the general ISSP problem. The time and space complexities of the proposed scheme are ${\cal O}\left(n \max\left\{1 / \epsilon,\log n\right\}\right)$ and ${\cal O}\left(n+1/\epsilon\right),$ respectively, where $\epsilon$ is the relative approximation error. To the best of our knowledge, the proposed scheme has almost the same time complexity but a significantly lower space complexity compared to the best known scheme. Both the correctness and efficiency of the proposed scheme are validated by numerical simulations. In particular, the proposed scheme successfully solves ISSP instances with $n=100,000$ and $\epsilon=0.1\%$ within one second.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1704.06928/full.md

## Figures

10 figures with captions in the complete paper: https://tomesphere.com/paper/1704.06928/full.md

## References

14 references — full list in the complete paper: https://tomesphere.com/paper/1704.06928/full.md

---
Source: https://tomesphere.com/paper/1704.06928