Global Postage Stamp Problem
- The Global Postage Stamp Problem is a combinatorial optimization challenge that determines optimal stamp denominations for representing consecutive integers with a limited number of stamps.
- It employs recursive divide-and-conquer methods, asymptotic analysis, and geometric techniques to derive bounds and construct extremal bases.
- Recent research highlights NP-hardness, polynomial-time approximations, and connections to additive number theory, underscoring its significance in discrete optimization.
The Global Postage Stamp Problem (GPSP) concerns the combinatorial optimization of integer bases for additive representation under bounded sum constraints. Given a fixed number of stamp denominations and a maximum stamp count %%%%1%%%%, the GPSP seeks to select denominations to maximize the largest consecutive integer representable as a sum of at most stamps (with repetitions). The GPSP has deep ties to additive number theory, computational complexity, discrete optimization, and has motivated advances in asymptotic analysis, explicit extremal constructions, and algorithmic methodology.
1. Formal Definition and Problem Statement
Fix integers (maximum allowed stamps, also called the range parameter) and (number of denominations). Consider a basis with . For this , define
The Global Postage Stamp Problem asks: For given and , to find a -element set maximizing . Define the optimum
and call any achieving equality an extremal basis. This formulation subsumes the classical "h-basis" concept and encompasses both structural and computational complexity.
2. Algorithmic Techniques and Approximation
The GPSP is known to be NP-hard in the local (decision) version for as parameter, but admits efficient polynomial-time approximation algorithms for the global maximization variant. Colisson Palais et al. (Palais et al., 29 Jan 2026) introduced a recursive divide-and-conquer approach, building upon a combinatorial lemma attributed to Mrose (1974):
- If has size and -range , and has size and -range , then the union forms a basis of size with -range at least .
The resulting recursive algorithm, outlined as follows, achieves the best known polynomial-time guarantee:
1 2 3 4 5 6 7 8 9 10 |
def BuildBasis(k, m): if k == 1: return [1] if m == 1: return range(1, k+1) k1, k2 = k//2, k - k//2 m1, m2 = m//2, m - m//2 A1 = BuildBasis(k1, m1) A2 = BuildBasis(k2, m2) h1 = compute_range(A1, m1) A2_scaled = [(h1+1) * a for a in A2] return A1 + A2_scaled |
$h(A) \geq (1 + m/k)^k - 1 \quad \text{(for $k \leq m$)},$
and analogous bounds in the regime.
Time complexity is , space is . Empirically, combining this method with brute-force for small subbase regimes further tightens performance to near-optimal (Palais et al., 29 Jan 2026).
3. Asymptotic Bounds for Large Parameters
Asymptotic analysis for GPSP at large or falls under additive basis theory. The minimal size of an -fold basis for exhibits sharp exponential transitions. Faust and Tait (Faust et al., 31 Jul 2025) provide improved bounds:
- For every and sufficiently large :
Thus,
A probabilistic method using Berry–Esseen and a modular digit-expansion construction for bases in underlie these improvements. These results essentially halve prior leading constants and, for the first time, establish nontrivial (subexponential-in-) upper bounds for all .
The full asymptotic regime remains open; the gap between lower and upper constants is substantial. This suggests further refinements—possibly via advanced local limit theorems or more optimal group-theoretic constructions—are plausible future directions (Faust et al., 31 Jul 2025).
4. Explicit Extremal Bases for Small
For , closed-form characterization is established. Challis (Challis, 2013) provides parametric formulae (for ) expressing
in terms of , for , with corresponding constructive formulas for the extremal set . The solution employs the concept of stride generators and thread diagrams, leading to finite combinatorial enumeration valid for all large .
For , Challis (Challis, 2014) describes two universal families—Hofmeister and Braunschädel bases—parameterized by period-12 cycles in . All known extremal bases for (and large ) belong to one of these two forms:
- Hofmeister:
- Braunschädel:
Coverage (the maximal representable ) is expressed as quartic polynomials in with explicit offsets. No new symbolic forms have been observed despite extensive computational exploration for . Selmer’s correspondence and Mossige’s admissibility criteria further support this observed rigidity.
A plausible implication is that for fixed , the space of extremal bases may be exhausted by finitely many periodic patterns up to slowly drifting offset vectors, though a rigorous proof is still lacking (Challis, 2014).
5. Structural and Geometric Analysis
Granville and Shakan (Granville et al., 2020) provide a general geometric solution for the -fold sumset in all dimensions once is large. For with , and ,
for , where is a finite exceptional set. The result generalizes to higher dimensions via convex geometry and additive combinatorics, yielding asymptotic Ehrhart-like polynomiality for the full sumset cardinality.
This analysis tightly characterizes the regions of guaranteed coverage and identifies precise endpoints where representation can fail, reducing the global problem to the structure of the “exceptional set,” which has cardinality in dimensions.
6. Open Problems and Current Research Questions
Despite extensive progress, several fundamental questions remain:
- Can the exponent or base in polynomial-time approximation bounds (e.g., those of Colisson Palais et al.) be further improved via new combinatorial constructions (Palais et al., 29 Jan 2026)?
- Is there a fixed-parameter tractable (FPT) exact algorithm in or for finding extremal bases, despite the NP-hardness in (Palais et al., 29 Jan 2026)?
- What is the precise asymptotic behavior of as ? The gap between known lower and upper bounds is exponentially wide in the regime of large (Faust et al., 31 Jul 2025).
- For , will one of Hofmeister or Braunschädel bases strictly dominate for all but finitely many , or will optimal forms oscillate indefinitely (Challis, 2014)?
- Can the drift of offset vectors in the case be fully characterized, and is it possible to prove that no new structural types exist for fixed (Challis, 2014)?
- For arbitrary , does the geometric/exceptional set analysis of (Granville et al., 2020) offer improved explicit bounds for moderately sized parameters?
7. Connections and Applications
The GPSP is linked to additive basis theory, computational number theory, and the algorithmics of integer representations. Recent algorithmic advances facilitate more efficient protocols for secure multi-party computation via improved homomorphic polynomial evaluation (notably, from the work of Colisson Palais et al. (Palais et al., 29 Jan 2026)). The interplay between explicit constructions, combinatorial optimization, and analytic number theory continues to stimulate new technical developments and cross-disciplinary applications.
Key References:
- (Palais et al., 29 Jan 2026) for algorithms and polynomial-time approximations
- (Faust et al., 31 Jul 2025) for new exponential-in- asymptotic bounds
- (Granville et al., 2020) for geometric and structural results on sumsets
- (Challis, 2014, Challis, 2013) for explicit constructions in small cases