English

Selective algorithm processing of subset sum distributions

Data Structures and Algorithms 2024-09-18 v1

Abstract

The efficiency of exact subset sum problem algorithms which compute individual subset sums is defined as e=min(T/z,1)e=min(T/z, 1), where zz is the number of subset sums computed. ee is related to these algorithms' computational complexity. This system maps the sums into knkn bins to select its most efficient algorithm for each bin for each input value. These algorithms include additive, subtractive and repeated value dynamic programming. Cases which would otherwise be processed inefficiently (eg: all even values) are handled by modular arithmetic and by dynamically partioning the input values. The system's experimentally validated efficiency corresponds to O(max(TT, n2n^2)) with space complexity O(max(TT, nn)), for k=2k=2.

Keywords

Cite

@article{arxiv.2409.11076,
  title  = {Selective algorithm processing of subset sum distributions},
  author = {Nick Dawes},
  journal= {arXiv preprint arXiv:2409.11076},
  year   = {2024}
}

Comments

10 pages