Subset sum problem: Difference between revisions

From Rosetta Code
Content added Content deleted
(added ocaml)
(→‎version 2: format; reverse "not a bruteforce" statement)
Line 812: Line 812:
===version 2===
===version 2===
This version requires the data to be in ascending order (by weight).
This version requires the data to be in ascending order (by weight).
<br>Code could've been included to sort the table, but the extra code would've made the
Code could've been included to sort the table, but the extra code would've made the
<br>program more bulkier, so the list was just sorted externally.
program more bulkier, so the list was just sorted externally.
<br>It's about three times faster than version 1 (above) because it takes advantage of short-circuiting the
It's about three times faster than version 1 (above) because it takes advantage of short-circuiting the
<br>summing process, this version isn't a brute-force method.
summing process. This version is still a brute-force method, though maybe less so than version 1.
<lang rexx>/*REXX pgm finds some non-null subsets of a weighted list whose sum=0. */
<lang rexx>/*REXX pgm finds some non-null subsets of a weighted list whose sum=0. */
arg target stopAt . /*get arguments from command line*/
arg target stopAt . /*get arguments from command line*/

Revision as of 23:25, 20 May 2012

Subset sum problem is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.

Implement a function/procedure/method/subroutine that takes a set/array/list/stream/table/collection of words with integer weights, and identifies a non-empty subset of them whose weights sum to zero (cf. the Dropbox Diet candidate screening exercise and the Subset sum problem Wikipedia article).

For example, for this set of weighted words, one solution would be the set of words {elysee, efferent, deploy, departure, centipede, bonnet, balm, archbishop}, because their respective weights of -326, 54, 44, 952, -658, 452, 397, and -915 sum to zero.

Table of weighted words
word weight
alliance -624
archbishop -915
balm 397
bonnet 452
brute 870
centipede -658
cobol 362
covariate 590
departure 952
deploy 44
diophantine 645
efferent 54
elysee -326
eradicate 376
escritoire 856
exorcism -983
fiat 170
filmy -874
flatworm 503
gestapo 915
infra -847
isis -982
lindholm 999
markham 475
mincemeat -880
moresby 756
mycenae 183
plugging -266
smokescreen 423
speakeasy -745
vein 813

Another solution would be the set of words {flatworm, gestapo, infra, isis, lindholm, plugging, smokescreen, speakeasy}, because their respective weights of 503, 915, -847, -982, 999, -266, 423, and -745 also sum to zero.

You may assume the weights range from -1000 to 1000. If there are multiple solutions, only one needs to be found. Use any algorithm you want and demonstrate it on a set of at least 30 weighted words with the results shown in a human readable form. Note that an implementation that depends on enumerating all possible subsets is likely to be infeasible.

Ada

<lang Ada>with Ada.Text_IO; use Ada.Text_IO; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; procedure SubsetSum is

  function "+"(S:String) return Unbounded_String renames To_Unbounded_String;
  type Point is record
     str : Unbounded_String;
     num : Integer;
  end record;
  type Points is array (Natural range <>) of Point;
  type Indices is array (Natural range <>) of Natural;
  procedure Print (data : Points; list : Indices; len : Positive) is begin
     Put (len'Img & ":");
     for i in 0..len-1 loop
        Put (" "& To_String(data(list(i)).str));
     end loop; New_Line;
  end Print;
  function Check (data : Points; list : Indices; len : Positive) return Boolean is
     sum : Integer := 0;
  begin
     for i in 0..len-1 loop sum := sum + data(list(i)).num; end loop;
     return sum = 0;
  end Check;
  procedure Next (list : in out Indices; n, r : Positive ) is begin
     for i in reverse 0..r-1 loop
        if list(i)/=i+n-r then list(i):=list(i)+1;
           for j in i+1..r-1 loop list(j):=list(j-1)+1; end loop; exit;
        end if;
     end loop;
  end Next;
  data : constant Points := ((+"alliance", -624), (+"archbishop", -915),
     (+"balm", 397), (+"bonnet", 452), (+"brute", 870),
     (+"centipede", -658), (+"cobol", 362), (+"covariate", 590),
     (+"departure", 952), (+"deploy", 44), (+"diophantine", 645),
     (+"efferent", 54), (+"elysee", -326), (+"eradicate", 376),
     (+"escritoire", 856), (+"exorcism", -983), (+"fiat", 170),
     (+"filmy", -874), (+"flatworm", 503), (+"gestapo", 915),
     (+"infra", -847), (+"isis", -982), (+"lindholm", 999),
     (+"markham", 475), (+"mincemeat", -880), (+"moresby", 756),
     (+"mycenae", 183), (+"plugging", -266), (+"smokescreen", 423),
     (+"speakeasy", -745), (+"vein", 813));
  list, last : Indices (data'Range);

begin

  for len in 2..data'Length loop
     for i in 0..len-1 loop list(i):=i; end loop;
     loop
        if Check(data, list, len) then Print(data, list, len); exit; end if;
        last := list;
        Next(list, data'Length, len);
        exit when last=list;
     end loop;
  end loop;

end SubsetSum;</lang>

Output:
2: archbishop gestapo
3: centipede markham mycenae
4: alliance balm deploy mycenae
5: alliance brute covariate deploy mincemeat
6: alliance archbishop balm deploy gestapo mycenae
7: alliance archbishop bonnet cobol departure exorcism moresby
8: alliance archbishop balm bonnet fiat flatworm isis lindholm
9: alliance archbishop balm bonnet brute covariate eradicate mincemeat plugging
10: alliance archbishop balm bonnet brute centipede cobol departure deploy mincemeat
11: alliance archbishop balm bonnet brute centipede cobol departure infra moresby speakeasy
12: alliance archbishop balm bonnet brute centipede cobol covariate diophantine efferent elysee infra
13: alliance archbishop balm bonnet brute centipede cobol covariate departure efferent eradicate filmy isis
14: alliance archbishop balm bonnet brute centipede cobol covariate departure deploy elysee filmy markham speakeasy
15: alliance archbishop balm bonnet brute centipede cobol covariate departure deploy elysee exorcism flatworm infra mycenae
16: alliance archbishop balm bonnet brute centipede cobol covariate departure deploy diophantine elysee exorcism filmy gestapo infra
17: alliance archbishop balm bonnet brute centipede cobol covariate departure deploy diophantine exorcism isis mincemeat mycenae plugging vein
18: alliance archbishop balm bonnet brute centipede cobol covariate departure deploy diophantine efferent elysee exorcism filmy isis mycenae vein
19: alliance archbishop balm bonnet brute centipede cobol covariate departure deploy diophantine efferent elysee eradicate exorcism fiat infra isis smokescreen
20: alliance archbishop balm bonnet brute centipede cobol covariate departure deploy diophantine efferent elysee eradicate exorcism gestapo infra isis smokescreen speakeasy
21: alliance archbishop balm bonnet brute centipede cobol covariate departure deploy diophantine efferent elysee eradicate exorcism flatworm infra lindholm mincemeat plugging speakeasy
22: alliance archbishop balm bonnet brute centipede cobol covariate departure deploy diophantine efferent elysee eradicate escritoire exorcism fiat filmy flatworm mincemeat plugging speakeasy
23: alliance archbishop balm bonnet brute centipede cobol covariate departure deploy diophantine efferent elysee eradicate escritoire exorcism infra isis mincemeat moresby mycenae smokescreen speakeasy
24: alliance archbishop balm bonnet brute centipede cobol covariate departure deploy diophantine efferent elysee exorcism filmy gestapo infra markham mincemeat moresby mycenae plugging smokescreen speakeasy
25: alliance archbishop balm bonnet brute centipede cobol covariate departure deploy diophantine eradicate exorcism fiat filmy flatworm infra isis lindholm markham mincemeat moresby mycenae plugging speakeasy
26: alliance archbishop balm bonnet brute centipede cobol covariate departure deploy diophantine elysee eradicate escritoire exorcism fiat filmy gestapo infra isis markham mincemeat mycenae plugging speakeasy vein
27: alliance archbishop balm bonnet brute centipede covariate departure deploy efferent elysee eradicate escritoire exorcism fiat filmy flatworm infra isis lindholm markham mincemeat moresby mycenae plugging smokescreen speakeasy

C

<lang c>#include <stdio.h>

  1. include <stdlib.h>
  2. include <stdint.h>
  3. include <string.h>

typedef struct { void* data; int weight; } item;

uint64_t subsum(item *x, int n) { int i, j, w, from, to, step, pos = 0, neg = 0; uint64_t bit, *buf;

for (i = 0; i < n; i++) if (x[i].weight >= 0) pos += x[i].weight; else neg += x[i].weight;

buf = calloc(pos - neg + 1, sizeof(uint64_t)); buf -= neg;

for (i = 0; i < n; i++) { w = x[i].weight; bit = (uint64_t)1 << i;

if (w < 0) from = neg, to = pos + 1, step = 1; else from = pos, to = neg - 1, step = -1;

for (j = from; j != to; j += step) if (buf[j]) buf[j + w] = buf[j] | bit; buf[w] = bit;

if (buf[0]) break; }

bit = buf[0]; free(buf + neg);

return bit; }

int main(void) { item em[] = { {"alliance", -624}, {"archbishop", -915}, {"balm", 397}, {"bonnet", 452}, {"brute", 870}, {"centipede", -658}, {"cobol", 362}, {"covariate", 590}, {"departure", 952}, {"deploy", 44}, {"diophantine", 645}, {"efferent", 54}, {"elysee", -326}, {"eradicate", 376}, {"escritoire", 856}, {"exorcism", -983}, {"fiat", 170}, {"filmy", -874}, {"flatworm", 503}, {"gestapo", 915}, {"infra", -847}, {"isis", -982}, {"lindholm", 999}, {"markham", 475}, {"mincemeat", -880}, {"moresby", 756}, {"mycenae", 183}, {"plugging", -266}, {"smokescreen", 423}, {"speakeasy", -745}, {"vein", 813} };

uint64_t i, v, ret = subsum(em, sizeof(em)/sizeof(em[0])); if (!ret) { puts("no zero sums\n"); return 1; }

puts("Found zero sum:"); for (i = 0; i < 64; i++) { v = (uint64_t)1 << i; if (ret & v) printf("%2llu | %5d %s\n", i, em[i].weight, (char*)em[i].data); }

return 0;

}</lang>

Output:
Found zero sum:
 1 |  -915 archbishop
 2 |   397 balm
 3 |   452 bonnet
 5 |  -658 centipede
 8 |   952 departure
 9 |    44 deploy
11 |    54 efferent
12 |  -326 elysee

D

A simple brute-force solution.

Translation of: Ruby

<lang d>import std.stdio, std.algorithm, std.string, std.typecons;

T[][] combinations(T)(T[] arr, int k) {

   if (k == 0) return [[]];
   T[][] result;
   foreach (i, x; arr)
       foreach (suffix; combinations(arr[i+1 .. $], k-1))
           result ~= x ~ suffix;
   return result;

}

void main() {

   alias tuple T;
   immutable items = [

T("alliance", -624), T("archbishop", -915), T("balm", 397), T("bonnet", 452), T("brute", 870), T("centipede", -658), T("cobol", 362), T("covariate", 590), T("departure", 952), T("deploy", 44), T("diophantine", 645), T("efferent", 54), T("elysee", -326), T("eradicate", 376), T("escritoire", 856), T("exorcism", -983), T("fiat", 170), T("filmy", -874), T("flatworm", 503), T("gestapo", 915), T("infra", -847), T("isis", -982), T("lindholm", 999), T("markham", 475), T("mincemeat", -880), T("moresby", 756), T("mycenae", 183), T("plugging", -266), T("smokescreen", 423), T("speakeasy", -745), T("vein", 813)];

   foreach (n; 1 .. items.length)
       foreach (comb; combinations(items, n))
           if (reduce!q{ a + b[1] }(0, comb) == 0) {
               writefln("A subset of length %d: %s", n,
                        //comb.map!q{ a[0] }.join(", "));
                        comb.map!q{ cast()a[0] }.join(", "));
               return;
           }
   writefln("No solution found.");

}</lang> Output:

A subset of length 2: archbishop, gestapo

Go

<lang go>package main

import "fmt"

type ww struct {

   word   string
   weight int

}

var input = []*ww{

   {"alliance", -624},
   {"archbishop", -915},
   {"balm", 397},
   {"bonnet", 452},
   {"brute", 870},
   {"centipede", -658},
   {"cobol", 362},
   {"covariate", 590},
   {"departure", 952},
   {"deploy", 44},
   {"diophantine", 645},
   {"efferent", 54},
   {"elysee", -326},
   {"eradicate", 376},
   {"escritoire", 856},
   {"exorcism", -983},
   {"fiat", 170},
   {"filmy", -874},
   {"flatworm", 503},
   {"gestapo", 915},
   {"infra", -847},
   {"isis", -982},
   {"lindholm", 999},
   {"markham", 475},
   {"mincemeat", -880},
   {"moresby", 756},
   {"mycenae", 183},
   {"plugging", -266},
   {"smokescreen", 423},
   {"speakeasy", -745},
   {"vein", 813},

}

type sss struct {

   subset []*ww
   sum    int

}

func main() {

   ps := []sssTemplate:Nil, 0
   for _, i := range input {
       pl := len(ps)
       for j := 0; j < pl; j++ {
           subset := append([]*ww{i}, ps[j].subset...)
           sum := i.weight + ps[j].sum
           if sum == 0 {
               fmt.Println("this subset sums to 0:")
               for _, i := range subset {
                   fmt.Println(*i)
               }
               return
           }
           ps = append(ps, sss{subset, sum})
       }
   }
   fmt.Println("no subset sums to 0")

}</lang>

Output:
this subset sums to 0:
{elysee -326}
{efferent 54}
{deploy 44}
{covariate 590}
{cobol 362}
{centipede -658}
{bonnet 452}
{balm 397}
{archbishop -915}

Icon and Unicon

Translation of: Ruby

<lang Icon>link printf,lists

procedure main()

  BruteZeroSubset(string2table(
       "alliance/-624/archbishop/-915/balm/397/bonnet/452/brute/870/_
        centipede/-658/cobol/362/covariate/590/departure/952/deploy/44/_
        diophantine/645/efferent/54/elysee/-326/eradicate/376/escritoire/856/_
        exorcism/-983/fiat/170/filmy/-874/flatworm/503/gestapo/915/infra/-847/_
        isis/-982/lindholm/999/markham/475/mincemeat/-880/moresby/756/_
        mycenae/183/plugging/-266/smokescreen/423/speakeasy/-745/vein/813/"))         

end

procedure BruteZeroSubset(words) # brute force 1 of each length

  every n := 1 to *words do {
     every t := tcomb(words,n) do {            # generate combination   
        every (sum := 0) +:= words[!t]         # sum combination 
        if sum = 0 then {
           printf("A zero-sum subset of length %d : %s\n",n,list2string(sort(t)))
           break next                          # found one
           }
        }
        printf("No zero-sum subsets of length %d\n",n)
     }

end

  1. helper procedures

procedure tcomb(T, i) #: Table (key) combinations

  local K
  every put(K := [],key(T))        # list of keys
  every suspend lcomb(K,i)         # return list combs 

end

procedure list2string(L) #: format list as a string

  every (s := "[ ") ||:= !L || " " # reformat as string
  return s || "]"

end

procedure string2table(s,d) #: format string "k1/v1/.../kn/vn" as table

  T := table()
  /d := "/"
  s ? until pos(0) do 
     T[1(tab(find(d)),=d)] := numeric(1(tab(find(d)),=d))
  return T

end</lang>

printf.icn provides formatting lists.icn provides lcomb for list combinations

Output:

No zero-sum subsets of length 1
A zero-sum subset of length 2 : [ archbishop gestapo ]
A zero-sum subset of length 3 : [ centipede markham mycenae ]
A zero-sum subset of length 4 : [ alliance balm deploy mycenae ]
A zero-sum subset of length 5 : [ balm eradicate isis markham plugging ]
A zero-sum subset of length 6 : [ archbishop balm escritoire exorcism fiat markham ]
A zero-sum subset of length 7 : [ balm bonnet cobol fiat filmy isis markham ]
A zero-sum subset of length 8 : [ balm bonnet cobol filmy markham mincemeat speakeasy vein ]
A zero-sum subset of length 9 : [ alliance archbishop balm bonnet cobol lindholm markham mincemeat plugging ]
A zero-sum subset of length 10 : [ archbishop balm bonnet cobol filmy gestapo markham mincemeat speakeasy vein ]
A zero-sum subset of length 11 : [ alliance archbishop balm bonnet cobol deploy gestapo isis markham mincemeat moresby ]
A zero-sum subset of length 12 : [ alliance archbishop balm bonnet cobol exorcism fiat lindholm markham mincemeat plugging vein ]
A zero-sum subset of length 13 : [ alliance archbishop balm bonnet brute cobol deploy diophantine exorcism markham mincemeat plugging smokescreen ]
A zero-sum subset of length 14 : [ alliance archbishop balm bonnet centipede cobol diophantine exorcism lindholm markham mincemeat mycenae plugging vein ]
A zero-sum subset of length 15 : [ alliance archbishop balm bonnet cobol diophantine fiat gestapo isis markham mincemeat mycenae plugging speakeasy vein ]
A zero-sum subset of length 16 : [ alliance archbishop balm bonnet brute cobol diophantine eradicate exorcism filmy infra lindholm markham mincemeat plugging vein ]
A zero-sum subset of length 17 : [ alliance archbishop balm bonnet centipede cobol covariate deploy diophantine exorcism filmy lindholm markham mincemeat plugging smokescreen vein ]
A zero-sum subset of length 18 : [ alliance archbishop balm bonnet centipede cobol diophantine eradicate escritoire exorcism filmy gestapo infra markham mincemeat moresby plugging vein ]
A zero-sum subset of length 19 : [ alliance archbishop balm bonnet cobol diophantine efferent exorcism filmy flatworm gestapo infra isis lindholm markham mincemeat moresby plugging vein ]
A zero-sum subset of length 20 : [ alliance archbishop balm bonnet centipede cobol deploy diophantine efferent escritoire exorcism fiat filmy gestapo isis lindholm markham mincemeat plugging vein ]
A zero-sum subset of length 21 : [ alliance archbishop balm bonnet brute centipede cobol covariate deploy diophantine efferent elysee exorcism filmy gestapo infra markham mincemeat moresby plugging vein ]
A zero-sum subset of length 22 : [ alliance archbishop balm bonnet centipede cobol deploy diophantine eradicate escritoire exorcism fiat filmy gestapo isis lindholm markham mincemeat plugging smokescreen speakeasy vein ]
A zero-sum subset of length 23 : [ alliance archbishop balm bonnet brute centipede cobol covariate departure deploy diophantine exorcism filmy flatworm gestapo infra isis markham mincemeat moresby plugging speakeasy vein ]
A zero-sum subset of length 24 : [ alliance archbishop balm bonnet brute centipede cobol departure deploy diophantine efferent escritoire exorcism filmy gestapo infra isis markham mincemeat moresby mycenae plugging speakeasy vein ]
A zero-sum subset of length 25 : [ alliance archbishop balm bonnet brute centipede cobol covariate deploy diophantine efferent elysee eradicate exorcism filmy gestapo infra isis markham mincemeat moresby mycenae plugging smokescreen vein ]
A zero-sum subset of length 26 : [ alliance archbishop balm bonnet centipede cobol covariate departure deploy diophantine efferent elysee eradicate escritoire exorcism fiat filmy gestapo infra isis lindholm markham mincemeat plugging speakeasy vein ]
A zero-sum subset of length 27 : [ alliance archbishop balm bonnet brute centipede covariate departure deploy efferent elysee eradicate escritoire exorcism fiat filmy flatworm infra isis lindholm markham mincemeat moresby mycenae plugging smokescreen speakeasy ]
No zero-sum subsets of length 28
No zero-sum subsets of length 29
No zero-sum subsets of length 30
No zero-sum subsets of length 31

Mathematica

<lang Mathematica>a = {{"alliance", -624}, {"archbishop", -915}, {"balm", 397}, {"bonnet", 452}, {"brute", 870}, {"centipede", -658}, {"cobol", 362}, {"covariate", 590},{"departure", 952}, {"deploy", 44}, {"diophantine", 645}, {"efferent", 54}, {"elysee", -326}, {"eradicate", 376}, {"escritoire", 856}, {"exorcism", -983}, {"fiat", 170}, {"filmy", -874}, {"flatworm", 503}, {"gestapo", 915}, {"infra", -847}, {"isis", -982}, {"lindholm", 999}, {"markham", 475}, {"mincemeat", -880}, {"moresby", 756}, {"mycenae", 183}, {"plugging", -266}, {"smokescreen", 423}, {"speakeasy", -745}, {"vein", 813}};

result = Rest@Select[ Subsets[a, 7], (Total[#;; , 2] == 0) &]; Map[ (Print["A zero-sum subset of length ", Length[#], " : ", #;; , 1])& , result ]</lang>

A zero-sum subset of length 2 : {archbishop,gestapo}
A zero-sum subset of length 3 : {centipede,markham,mycenae}
A zero-sum subset of length 3 : {exorcism,fiat,vein}
A zero-sum subset of length 4 : {alliance,balm,deploy,mycenae}
A zero-sum subset of length 4 : {balm,efferent,filmy,smokescreen}
A zero-sum subset of length 4 : {bonnet,elysee,escritoire,isis}
A zero-sum subset of length 4 : {brute,centipede,efferent,plugging}
....

OCaml

Just search randomly until a result is found:

<lang ocaml>let d =

 [ "alliance", -624;  "archbishop", -915;  "balm", 397;  "bonnet", 452;
   "brute", 870;  "centipede", -658;  "cobol", 362;  "covariate", 590;
   "departure", 952;  "deploy", 44;  "diophantine", 645;  "efferent", 54;
   "elysee", -326;  "eradicate", 376;  "escritoire", 856;  "exorcism", -983;
   "fiat", 170;  "filmy", -874;  "flatworm", 503;  "gestapo", 915;
   "infra", -847;  "isis", -982;  "lindholm", 999;  "markham", 475;
   "mincemeat", -880;  "moresby", 756;  "mycenae", 183;  "plugging", -266;
   "smokescreen", 423;  "speakeasy", -745;  "vein", 813; ]

let sum = List.fold_left (fun sum (_,w) -> sum + w) 0 let p = function [] -> false | lst -> (sum lst) = 0

let take lst set =

 let x = List.nth set (Random.int (List.length set)) in
 (x::lst, List.filter (fun y -> y <> x) set)

let swap (a, b) = (b, a) let pop lst set = swap (take set lst)

let () =

 Random.self_init ();
 let rec aux lst set =
   let f =
     match lst, set with
     | [], _ -> take
     | _, [] -> pop
     | _ -> if Random.bool () then take else pop
   in
   let lst, set = f lst set in
   if p lst then lst
   else aux lst set
 in
 let res = aux [] d in
 List.iter (fun (n,w) -> Printf.printf " %4d\t%s\n" w n) res</lang>

PicoLisp

<lang PicoLisp>(de *Words

  (alliance . -624) (archbishop . -915) (balm . 397) (bonnet . 452)
  (brute . 870) (centipede . -658) (cobol . 362) (covariate . 590)
  (departure . 952) (deploy . 44) (diophantine . 645) (efferent . 54)
  (elysee . -326) (eradicate . 376) (escritoire . 856) (exorcism . -983)
  (fiat . 170) (filmy . -874) (flatworm . 503) (gestapo . 915)
  (infra . -847) (isis . -982) (lindholm . 999) (markham . 475)
  (mincemeat . -880) (moresby . 756) (mycenae . 183) (plugging . -266)
  (smokescreen . 423) (speakeasy . -745) (vein . 813) )</lang>

Minimal brute force solution: <lang PicoLisp>(load "@lib/simul.l") # For 'subsets'

(pick

  '((N)
     (find '((L) (=0 (sum cdr L)))
        (subsets N *Words) ) )
  (range 1 (length *Words)) )</lang>

Output:

-> ((archbishop . -915) (gestapo . 915))

Python

Version 1

<lang python>words = { # some values are different from example "alliance": -624, "archbishop": -925, "balm": 397, "bonnet": 452, "brute": 870, "centipede": -658, "cobol": 362, "covariate": 590, "departure": 952, "deploy": 44, "diophantine": 645, "efferent": 54, "elysee": -326, "eradicate": 376, "escritoire": 856, "exorcism": -983, "fiat": 170, "filmy": -874, "flatworm": 503, "gestapo": 915, "infra": -847, "isis": -982, "lindholm": 999, "markham": 475, "mincemeat": -880, "moresby": 756, "mycenae": 183, "plugging": -266, "smokescreen": 423, "speakeasy": -745, "vein": 813 }

neg = 0 pos = 0 for (w,v) in words.iteritems(): if v > 0: pos += v else: neg += v

sums = [0] * (pos - neg + 1)

for (w,v) in words.iteritems(): s = sums[:] if not s[v - neg]: s[v - neg] = (w,)

for (i, w2) in enumerate(sums): if w2 and not s[i + v]: s[i + v] = w2 + (w,)

sums = s if s[-neg]: for x in s[-neg]: print(x, words[x]) break</lang>

Output:

('mycenae', 183) ('speakeasy', -745) ('bonnet', 452) ('lindholm', 999) ('cobol', 362) ('archbishop', -925) ('elysee', -326)

Brute force

<lang python>>>> from itertools import combinations >>> >>> word2weight = {"alliance": -624, "archbishop": -915, "balm": 397, "bonnet": 452,

 "brute": 870, "centipede": -658, "cobol": 362, "covariate": 590,
 "departure": 952, "deploy": 44, "diophantine": 645, "efferent": 54,
 "elysee": -326, "eradicate": 376, "escritoire": 856, "exorcism": -983,
 "fiat": 170, "filmy": -874, "flatworm": 503, "gestapo": 915,
 "infra": -847, "isis": -982, "lindholm": 999, "markham": 475,
 "mincemeat": -880, "moresby": 756, "mycenae": 183, "plugging": -266,
 "smokescreen": 423, "speakeasy": -745, "vein": 813}

>>> answer = None >>> for r in range(1, len(word2weight)+1): if not answer: for comb in combinations(word2weight, r): if sum(word2weight[w] for w in comb) == 0: answer = [(w, word2weight[w]) for w in comb] break


>>> answer [('archbishop', -915), ('gestapo', 915)]</lang>

REXX

version 1

This REXX solution isn't limited to integers.
This is a brute force solution. <lang rexx>/*REXX pgm finds some non-null subsets of a weighted list whose sum=0. */ arg target stopAt . /*get arguments from command line*/ if target== then target=0 /*No TARGET given? Use default.*/ if stopAt== then stopAt=1 /*No max sols given? Use default.*/

zzz= 'alliance -624 archbishop -915 balm 397' ,

    'bonnet       452       brute        870        centipede   -658' ,
    'cobol        362       covariate    590        departure    952' ,
    'deploy        44       diophantine  645        efferent      54' ,
    'elysee      -326       eradicate    376        escritoire   856' ,
    'exorcism    -983       fiat         170        filmy       -874' ,
    'flatworm     503       gestapo      915        infra       -847' ,
    'isis        -982       lindholm     999        markham      475' ,
    'mincemeat   -880       moresby      756        mycenae      183' ,
    'plugging    -266       smokescreen  423        speakeasy   -745' ,
    'vein         813'

@.=0; y=0; do N=1 until zzz=; parse var zzz @.N #.N zzz

               call tell right('['N']',30) right(@.N,11) right(#.N,5)
               end   /*N*/

solutions=0 call tell; call tell 'There are' N "entries in the table."

    do chunk=1 for N
    call combN N,chunk
    end    /*chunk*/

if solutions==0 then solutions='no' call tell 'Found' solutions "subsets whose summed weights =" target exit /*─────────────────────────────────────telly subroutine─────────────────*/ telly: solutions=solutions+1; names=

  do g=1 for y;  o=!.g
  names=names @.o

/* names=names @.o '{'#.o"}" <─── weights in this REXX statement.*/

  end  /*g*/

call tell '['y" names]" space(names) if solutions>=stopAt &,

  stopAt\==0 then do
                  call tell 'Stopped after finding' solutions "subsets."
                  exit
                  end

return

tell: say arg(1); call lineout 'SUBSET.'y,arg(1) /*write to file*/; return /*─────────────────────────────────────combN subroutine─────────────────*/ combN: procedure expose @. #. solutions stopAt target; parse arg x,y; !.=0 base=x+1; bbase=base-y; ym=y-1 /*!.n are the combination digits*/

         do n=1 for y;   !.n=n;   end           /*build 1st combination*/
  do j=1;   L=!.d;       do d=2 for ym;   L=L !.d;  end   /*d*/
  _=!.1;   s=#._
       do k=2 for y-1;   _=!.k;   s=s+#._;   end     /*sum the weights.*/
  if s==target then call telly
  !.y=!.y+1;    if !.y==base then if .combUp(ym) then leave
  end

return

.combUp: procedure expose !. y bbase; parse arg d; if d==0 then return 1 p=!.d; do u=d to y;  !.u=p+1

            if !.u>=bbase+u then return .combUp(u-1)
            p=!.u
            end

return 0</lang> output when using the input of: 0 100
(The above arguments set the target sum to zero and limits finding of solutions to one hundred.)
This output was produced with a version of the REXX program that included the weights with the name.
The REXX statement used was: /*weights in this one───> */ names=names @._ '{'#._"}"
Echoing of the input data was elided.

------------found a subset whose sum of weights = 0, the names are:------------
[2 names] archbishop {-915} gestapo {915}
[3 names] centipede {-658} markham {475} mycenae {183}
[3 names] exorcism {-983} fiat {170} vein {813}
[4 names] alliance {-624} balm {397} deploy {44} mycenae {183}
[4 names] balm {397} efferent {54} filmy {-874} smokescreen {423}
[4 names] bonnet {452} elysee {-326} escritoire {856} isis {-982}
[4 names] brute {870} centipede {-658} efferent {54} plugging {-266}
[4 names] centipede {-658} covariate {590} gestapo {915} infra {-847}
[4 names] centipede {-658} covariate {590} speakeasy {-745} vein {813}
[4 names] deploy {44} exorcism {-983} moresby {756} mycenae {183}
[4 names] eradicate {376} isis {-982} mycenae {183} smokescreen {423}
[4 names] exorcism {-983} gestapo {915} speakeasy {-745} vein {813}
[5 names] alliance {-624} brute {870} covariate {590} deploy {44} mincemeat {-880}
[5 names] alliance {-624} departure {952} deploy {44} infra {-847} markham {475}
[5 names] alliance {-624} departure {952} eradicate {376} fiat {170} filmy {-874}
[5 names] alliance {-624} eradicate {376} exorcism {-983} markham {475} moresby {756}

  ... the majority of the output has been deleted ...

Stopped after finding 100 subsets.

output when using the input of: 0 100
(The above arguments set the target sum to zero and limits finding the solutions to one hundred.)
Echoing of the input data was elided.

------------found a subset whose sum of weights = 0, the names are:------------
[2 names] archbishop gestapo
[3 names] centipede markham mycenae
[3 names] exorcism fiat vein
[4 names] alliance balm deploy mycenae
[4 names] balm efferent filmy smokescreen
[4 names] bonnet elysee escritoire isis
[4 names] brute centipede efferent plugging
[4 names] centipede covariate gestapo infra
[4 names] centipede covariate speakeasy vein
[4 names] deploy exorcism moresby mycenae
[4 names] eradicate isis mycenae smokescreen
[4 names] exorcism gestapo speakeasy vein
[5 names] alliance brute covariate deploy mincemeat
[5 names] alliance departure deploy infra markham
[5 names] alliance departure eradicate fiat filmy
[5 names] alliance eradicate exorcism markham moresby
[5 names] alliance infra markham mycenae vein
[5 names] archbishop balm diophantine escritoire exorcism
[5 names] archbishop bonnet covariate escritoire exorcism
[5 names] archbishop centipede covariate fiat vein
[5 names] archbishop centipede gestapo markham mycenae
[5 names] archbishop cobol departure filmy markham
[5 names] archbishop cobol elysee eradicate flatworm
[5 names] archbishop departure efferent infra moresby
[5 names] archbishop escritoire mincemeat moresby mycenae
[5 names] archbishop exorcism fiat gestapo vein
[5 names] archbishop isis lindholm markham smokescreen
[5 names] balm brute covariate exorcism filmy
[5 names] balm centipede departure efferent speakeasy
[5 names] balm centipede departure filmy mycenae
[5 names] balm cobol efferent exorcism fiat
[5 names] balm eradicate isis markham plugging
[5 names] balm escritoire exorcism markham speakeasy
[5 names] bonnet brute centipede infra mycenae
[5 names] bonnet centipede cobol elysee fiat
[5 names] bonnet centipede efferent infra lindholm
[5 names] bonnet centipede eradicate exorcism vein
[5 names] bonnet deploy elysee exorcism vein
[5 names] bonnet eradicate mycenae plugging speakeasy
[5 names] brute deploy gestapo infra isis
[5 names] brute deploy infra mincemeat vein
[5 names] brute deploy isis speakeasy vein
[5 names] brute eradicate filmy infra markham
[5 names] centipede cobol escritoire exorcism smokescreen
[5 names] centipede departure deploy diophantine exorcism
[5 names] centipede deploy escritoire flatworm speakeasy
[5 names] centipede diophantine exorcism mycenae vein
[5 names] centipede escritoire gestapo infra plugging
[5 names] centipede escritoire plugging speakeasy vein
[5 names] cobol diophantine escritoire exorcism mincemeat
[5 names] cobol escritoire filmy flatworm infra
[5 names] covariate departure exorcism isis smokescreen
[5 names] covariate eradicate exorcism isis lindholm
[5 names] covariate isis markham mycenae plugging
[5 names] departure efferent escritoire isis mincemeat
[5 names] departure elysee lindholm mincemeat speakeasy
[5 names] departure fiat flatworm mincemeat speakeasy
[5 names] deploy filmy isis lindholm vein
[5 names] escritoire filmy markham mincemeat smokescreen
[5 names] fiat infra lindholm smokescreen speakeasy
[6 names] alliance archbishop balm deploy gestapo mycenae
[6 names] alliance archbishop departure isis moresby vein
[6 names] alliance balm bonnet filmy gestapo plugging
[6 names] alliance balm brute efferent mincemeat mycenae
[6 names] alliance balm brute flatworm mincemeat plugging
[6 names] alliance balm centipede departure gestapo isis
[6 names] alliance balm centipede departure mincemeat vein
[6 names] alliance balm departure elysee filmy markham
[6 names] alliance balm escritoire fiat isis mycenae
[6 names] alliance bonnet brute elysee infra markham
[6 names] alliance bonnet centipede isis lindholm vein
[6 names] alliance brute centipede cobol elysee eradicate
[6 names] alliance brute centipede flatworm infra moresby
[6 names] alliance brute covariate infra moresby speakeasy
[6 names] alliance brute deploy efferent flatworm infra
[6 names] alliance brute deploy escritoire mincemeat plugging
[6 names] alliance brute efferent infra plugging vein
[6 names] alliance centipede deploy diophantine fiat smokescreen
[6 names] alliance cobol covariate deploy infra markham
[6 names] alliance cobol covariate eradicate fiat filmy
[6 names] alliance cobol departure infra plugging smokescreen
[6 names] alliance cobol deploy gestapo mincemeat mycenae
[6 names] alliance cobol eradicate infra lindholm plugging
[6 names] alliance cobol fiat infra moresby mycenae
[6 names] alliance cobol flatworm infra mycenae smokescreen
[6 names] alliance covariate filmy infra lindholm moresby
[6 names] alliance departure diophantine escritoire infra isis
[6 names] alliance departure eradicate filmy gestapo speakeasy
[6 names] alliance departure exorcism flatworm infra lindholm
[6 names] alliance diophantine efferent eradicate filmy smokescreen
[6 names] alliance diophantine elysee exorcism markham vein
[6 names] alliance diophantine elysee filmy moresby smokescreen
[6 names] alliance efferent eradicate moresby mycenae speakeasy
[6 names] alliance eradicate flatworm moresby plugging speakeasy
[6 names] archbishop balm centipede departure efferent fiat
[6 names] archbishop balm centipede deploy eradicate moresby
[6 names] archbishop balm centipede elysee flatworm lindholm
[6 names] archbishop balm covariate efferent escritoire isis
[6 names] archbishop balm covariate elysee lindholm speakeasy
[6 names] archbishop balm covariate fiat flatworm speakeasy
Stopped after finding 100 subsets.

version 2

This version requires the data to be in ascending order (by weight). Code could've been included to sort the table, but the extra code would've made the program more bulkier, so the list was just sorted externally. It's about three times faster than version 1 (above) because it takes advantage of short-circuiting the summing process. This version is still a brute-force method, though maybe less so than version 1. <lang rexx>/*REXX pgm finds some non-null subsets of a weighted list whose sum=0. */ arg target stopAt . /*get arguments from command line*/ if target== then target=0 /*No TARGET given? Use default.*/ if stopAt== then stopAt=1 /*No max sols given? Use default.*/

zzz= 'exorcism -983',

    'isis        -982',
    'archbishop  -915',
    'mincemeat   -880',
    'filmy       -874',
    'infra       -847',
    'speakeasy   -745',
    'centipede   -658',
    'alliance    -624',
    'elysee      -326',
    'plugging    -266',
    'deploy        44',
    'efferent      54',
    'fiat         170',
    'mycenae      183',
    'cobol        362',
    'eradicate    376',
    'balm         397',
    'smokescreen  423',
    'bonnet       452',
    'markham      475',
    'flatworm     503',
    'covariate    590',
    'diophantine  645',
    'moresby      756',
    'vein         813',
    'escritoire   856',
    'brute        870',
    'gestapo      915',
    'departure    952',
    'lindholm     999'     /*list must be in ascending order by weight.*/

@.=0; y=0; do N=1 until zzz=; parse var zzz @.N #.N zzz

               call t right('['N']',30) right(@.N,11) right(#.N,5)
               end   /*N*/

solutions=0 call t; call t 'There are' N "entries in the table."

    do chunk=1 for N
    call combN N,chunk
    end    /*chunk*/

if solutions==0 then solutions='no' call t 'Found' solutions "subsets whose summed weights =" target exit /*─────────────────────────────────────telly subroutine─────────────────*/ telly: solutions=solutions+1; names=

  do g=1 for y;  o=!.g
  names=names @.o

/* names=names @.o '{'#.o"}" <─── weights in this REXX statement.*/

  end  /*g*/

call t '['y" names]" space(names) if solutions>=stopAt &,

  stopAt\==0 then do
                  call t 'Stopped after finding' solutions "subsets."
                  exit
                  end

return

t: say arg(1); call lineout 'SUBSET.'y,arg(1) /*write to file*/; return /*─────────────────────────────────────combN subroutine─────────────────*/ combN: procedure expose @. #. solutions stopAt target; parse arg x,y; !.=0 base=x+1; bbase=base-y; ym=y-1 /*!.n are the combination digits*/

         do n=1 for y;   !.n=n;   end           /*build 1st combination*/
  do j=1;   L=!.d;       do d=2 for ym;   L=L !.d;  end   /*d*/
  _=!.1;   s=#._
    do k=2 for ym until s>target;  _=!.k; s=s+#._; end   /*sum weights.*/
  if s==target then call telly
  !.y=!.y+1;    if !.y==base then if .combUp(ym) then leave
  end

return

.combUp: procedure expose !. y bbase; parse arg d; if d==0 then return 1 p=!.d; do u=d to y;  !.u=p+1

            if !.u>=bbase+u then return .combUp(u-1)
            p=!.u
            end

return 0</lang>

Ruby

a brute force solution: <lang ruby>weights = {

 'alliance' =>	-624, 'archbishop' =>	-915, 'balm' =>	397, 'bonnet' =>	452,
 'brute' =>	870, 'centipede' =>	-658, 'cobol' =>	362, 'covariate' =>	590,
 'departure' =>	952, 'deploy' =>	44, 'diophantine' =>	645, 'efferent' =>	54,
 'elysee' =>	-326, 'eradicate' =>	376, 'escritoire' =>	856, 'exorcism' =>	-983,
 'fiat' =>	170, 'filmy' =>	-874, 'flatworm' =>	503, 'gestapo' =>	915,
 'infra' =>	-847, 'isis' =>	-982, 'lindholm' =>	999, 'markham' =>	475,
 'mincemeat' =>	-880, 'moresby' =>	756, 'mycenae' =>	183, 'plugging' =>	-266,
 'smokescreen' =>	423, 'speakeasy' =>	-745, 'vein' =>	813,

}

words = weights.keys 1.upto(words.length) do |n|

 zerosum = words.combination(n).find do |subset|
   subset.reduce(0) {|sum, word| sum += weights[word]} == 0
 end
 if zerosum.nil?
   puts "no subsets of length #{n} sum to zero"
 else
   puts "a subset of length #{n} that sums to zero: #{zerosum}"
 end

end</lang>

output:

no subsets of length 1 sum to zero
a subset of length 2 that sums to zero: ["archbishop", "gestapo"]
a subset of length 3 that sums to zero: ["centipede", "markham", "mycenae"]
a subset of length 4 that sums to zero: ["alliance", "balm", "deploy", "mycenae"]
a subset of length 5 that sums to zero: ["alliance", "brute", "covariate", "deploy", "mincemeat"]
a subset of length 6 that sums to zero: ["alliance", "archbishop", "balm", "deploy", "gestapo", "mycenae"]
a subset of length 7 that sums to zero: ["alliance", "archbishop", "bonnet", "cobol", "departure", "exorcism", "moresby"]
a subset of length 8 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "fiat", "flatworm", "isis", "lindholm"]
a subset of length 9 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "covariate", "eradicate", "mincemeat", "plugging"]
a subset of length 10 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "departure", "deploy", "mincemeat"]
a subset of length 11 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "departure", "infra", "moresby", "speakeasy"]
a subset of length 12 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "diophantine", "efferent", "elysee", "infra"]
a subset of length 13 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "efferent", "eradicate", "filmy", "isis"]
a subset of length 14 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "deploy", "elysee", "filmy", "markham", "speakeasy"]
a subset of length 15 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "deploy", "elysee", "exorcism", "flatworm", "infra", "mycenae"]
a subset of length 16 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "deploy", "diophantine", "elysee", "exorcism", "filmy", "gestapo", "infra"]
a subset of length 17 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "deploy", "diophantine", "exorcism", "isis", "mincemeat", "mycenae", "plugging", "vein"]
a subset of length 18 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "deploy", "diophantine", "efferent", "elysee", "exorcism", "filmy", "isis", "mycenae", "vein"]
a subset of length 19 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "deploy", "diophantine", "efferent", "elysee", "eradicate", "exorcism", "fiat", "infra", "isis", "smokescreen"]
a subset of length 20 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "deploy", "diophantine", "efferent", "elysee", "eradicate", "exorcism", "gestapo", "infra", "isis", "smokescreen", "speakeasy"]
a subset of length 21 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "deploy", "diophantine", "efferent", "elysee", "eradicate", "exorcism", "flatworm", "infra", "lindholm", "mincemeat", "plugging", "speakeasy"]
a subset of length 22 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "deploy", "diophantine", "efferent", "elysee", "eradicate", "escritoire", "exorcism", "fiat", "filmy", "flatworm", "mincemeat", "plugging", "speakeasy"]
a subset of length 23 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "deploy", "diophantine", "efferent", "elysee", "eradicate", "escritoire", "exorcism", "infra", "isis", "mincemeat", "moresby", "mycenae", "smokescreen", "speakeasy"]
a subset of length 24 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "deploy", "diophantine", "efferent", "elysee", "exorcism", "filmy", "gestapo", "infra", "markham", "mincemeat", "moresby", "mycenae", "plugging", "smokescreen", "speakeasy"]
a subset of length 25 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "deploy", "diophantine", "eradicate", "exorcism", "fiat", "filmy", "flatworm", "infra", "isis", "lindholm", "markham", "mincemeat", "moresby", "mycenae", "plugging", "speakeasy"]
a subset of length 26 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "cobol", "covariate", "departure", "deploy", "diophantine", "elysee", "eradicate", "escritoire", "exorcism", "fiat", "filmy", "gestapo", "infra", "isis", "markham", "mincemeat", "mycenae", "plugging", "speakeasy", "vein"]
a subset of length 27 that sums to zero: ["alliance", "archbishop", "balm", "bonnet", "brute", "centipede", "covariate", "departure", "deploy", "efferent", "elysee", "eradicate", "escritoire", "exorcism", "fiat", "filmy", "flatworm", "infra", "isis", "lindholm", "markham", "mincemeat", "moresby", "mycenae", "plugging", "smokescreen", "speakeasy"]
no subsets of length 28 sum to zero
no subsets of length 29 sum to zero
no subsets of length 30 sum to zero
no subsets of length 31 sum to zero

Tcl

As it turns out that the problem space has small subsets that sum to zero, it is more efficient to enumerate subsets in order of their size rather than doing a simple combination search. This is not true of all possible input data sets though; the problem is known to be NP-complete after all. <lang tcl>proc subsetsOfSize {set size} {

   if {$size <= 0} {

return

   } elseif {$size == 1} {

foreach elem $set {lappend result [list $elem]}

   } else {

incr size [set i -1] foreach elem $set { foreach sub [subsetsOfSize [lreplace $set [incr i] $i] $size] { lappend result [lappend sub $elem] } }

   }
   return $result

} proc searchForSubset {wordweights {minsize 1}} {

   set words [dict keys $wordweights]
   for {set i $minsize} {$i < [llength $words]} {incr i} {

foreach subset [subsetsOfSize $words $i] { set w 0 foreach elem $subset {incr w [dict get $wordweights $elem]} if {!$w} {return $subset} }

   }
   # Nothing was found
   return -code error "no subset sums to zero"

}</lang> Demonstrating: <lang tcl>set wordweights {

   alliance	 -624
   archbishop	 -915
   balm	 397
   bonnet	 452
   brute	 870
   centipede	 -658
   cobol	 362
   covariate	 590
   departure	 952
   deploy	 44
   diophantine	 645
   efferent	 54
   elysee	 -326
   eradicate	 376
   escritoire	 856
   exorcism	 -983
   fiat	 170
   filmy	 -874
   flatworm	 503
   gestapo	 915
   infra	 -847
   isis	 -982
   lindholm	 999
   markham	 475
   mincemeat	 -880
   moresby	 756
   mycenae	 183
   plugging	 -266
   smokescreen	 423
   speakeasy	 -745
   vein	 813

} set zsss [searchForSubset $wordweights] puts "Found zero-summing subset: [join [lsort $zsss] {, }]"</lang> Output:

Found zero-summing subset: archbishop, gestapo

Ursala

This solution scans the set sequentially while maintaining a record of all distinct sums obtainable by words encountered thus far, and stops when a zero sum is found. <lang Ursala>#import std

  1. import int

weights =

{

  'alliance': -624,
  'archbishop': -915,
  'balm': 397,
  'bonnet': 452,
  'brute': 870,
  'centipede': -658,
  'cobol': 362,
  'covariate': 590,
  'departure': 952,
  'deploy': 44,
  'diophantine': 645,
  'efferent': 54,
  'elysee': -326,
  'eradicate': 376,
  'escritoire': 856,
  'exorcism': -983,
  'fiat': 170,
  'filmy': -874,
  'flatworm': 503,
  'gestapo': 915,
  'infra': -847,
  'isis': -982,
  'lindholm': 999,
  'markham': 475,
  'mincemeat': -880,
  'moresby': 756,
  'mycenae': 183,
  'plugging': -266,
  'smokescreen': 423,
  'speakeasy': -745,
  'vein': 813}

nullset = ~&nZFihmPB+ =><> ~&ng?r\~&r ^TnK2hS\~&r ^C/~&lmPlNCX *D ^A/sum@lmPrnPX ~&lrmPC

  1. cast %zm

main = nullset weights</lang> The name of the function that takes the weighted set is nullset. It manipulates a partial result represented as a list of pairs, each containing a subset of weighted words and the sum of their weights. Here is a rough translation:

  • =><> fold right combinator with the empty list as the vacuuous case
  • ~&ng?r\~&r If the partial result contains a zero sum, return it.
  • ^TnK2hS\~&r Concatenate the partial result with the new list of subsets (computed as follows) and delete duplicate sums.
  • ^C/~&lmPlNCX Cons a singleton subset containing the next word to the partial results.
  • *D Distribute the next word in the set to the partial results and do the following to each.
  • sum@lmPrnPX Add the weight of the new word to the existing sum.
  • ~&lrmPC Cons the new word to the list of existing ones.
  • ~&nZFihmPB+ To conclude, search for a result with a zero sum, if any, and return its associated subset of weighted words.

output:

<
   'flatworm': 503,
   'gestapo': 915,
   'infra': -847,
   'isis': -982,
   'lindholm': 999,
   'plugging': -266,
   'smokescreen': 423,
   'speakeasy': -745>