Non-overlapping Matrix Sum












25














Non-overlapping Matrix Sum



Given k arrays of length n, output the maximum sum possible using one element from each array such that no two elements are from the same index. It is guaranteed that k<=n.



Input



A nonempty list of nonempty arrays of integers.



Output



An integer that represents the maximum sum.



Examples



Input -> Output
[[1]] -> 1
[[1, 3], [1, 3]] -> 4
[[1, 4, 2], [5, 6, 1]] -> 9
[[-2, -21],[18, 2]] -> 0
[[1, 2, 3], [4, 5, 6], [7, 8, 9]] -> 15
[[1, 2, 3, 4], [5, 4, 3, 2], [6, 2, 7, 1]] -> 16
[[-2, -1], [-1, -2]] -> -2









share|improve this question




















  • 5




    Math fun fact: For square arrays, this is the matrix permanent over the tropical semiring which uses the operations (max, +) in place of (+, *).
    – xnor
    2 days ago
















25














Non-overlapping Matrix Sum



Given k arrays of length n, output the maximum sum possible using one element from each array such that no two elements are from the same index. It is guaranteed that k<=n.



Input



A nonempty list of nonempty arrays of integers.



Output



An integer that represents the maximum sum.



Examples



Input -> Output
[[1]] -> 1
[[1, 3], [1, 3]] -> 4
[[1, 4, 2], [5, 6, 1]] -> 9
[[-2, -21],[18, 2]] -> 0
[[1, 2, 3], [4, 5, 6], [7, 8, 9]] -> 15
[[1, 2, 3, 4], [5, 4, 3, 2], [6, 2, 7, 1]] -> 16
[[-2, -1], [-1, -2]] -> -2









share|improve this question




















  • 5




    Math fun fact: For square arrays, this is the matrix permanent over the tropical semiring which uses the operations (max, +) in place of (+, *).
    – xnor
    2 days ago














25












25








25


5





Non-overlapping Matrix Sum



Given k arrays of length n, output the maximum sum possible using one element from each array such that no two elements are from the same index. It is guaranteed that k<=n.



Input



A nonempty list of nonempty arrays of integers.



Output



An integer that represents the maximum sum.



Examples



Input -> Output
[[1]] -> 1
[[1, 3], [1, 3]] -> 4
[[1, 4, 2], [5, 6, 1]] -> 9
[[-2, -21],[18, 2]] -> 0
[[1, 2, 3], [4, 5, 6], [7, 8, 9]] -> 15
[[1, 2, 3, 4], [5, 4, 3, 2], [6, 2, 7, 1]] -> 16
[[-2, -1], [-1, -2]] -> -2









share|improve this question















Non-overlapping Matrix Sum



Given k arrays of length n, output the maximum sum possible using one element from each array such that no two elements are from the same index. It is guaranteed that k<=n.



Input



A nonempty list of nonempty arrays of integers.



Output



An integer that represents the maximum sum.



Examples



Input -> Output
[[1]] -> 1
[[1, 3], [1, 3]] -> 4
[[1, 4, 2], [5, 6, 1]] -> 9
[[-2, -21],[18, 2]] -> 0
[[1, 2, 3], [4, 5, 6], [7, 8, 9]] -> 15
[[1, 2, 3, 4], [5, 4, 3, 2], [6, 2, 7, 1]] -> 16
[[-2, -1], [-1, -2]] -> -2






code-golf array-manipulation






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 2 days ago

























asked Dec 16 at 21:21









Quintec

1,4401722




1,4401722








  • 5




    Math fun fact: For square arrays, this is the matrix permanent over the tropical semiring which uses the operations (max, +) in place of (+, *).
    – xnor
    2 days ago














  • 5




    Math fun fact: For square arrays, this is the matrix permanent over the tropical semiring which uses the operations (max, +) in place of (+, *).
    – xnor
    2 days ago








5




5




Math fun fact: For square arrays, this is the matrix permanent over the tropical semiring which uses the operations (max, +) in place of (+, *).
– xnor
2 days ago




Math fun fact: For square arrays, this is the matrix permanent over the tropical semiring which uses the operations (max, +) in place of (+, *).
– xnor
2 days ago










17 Answers
17






active

oldest

votes


















9















Jelly, 10 6 bytes



ZŒ!ÆṭṀ


Try it online!



(4 bytes saved by @Dennis, who pointed out that Jelly had a "sum of main diagonal" builtin. I was not expecting it to have one of those; the previous solution implemented the operation without using the builtin. The operation in question, Æṭ, is defined as "trace", but the trace is only defined for square matrices; Jelly implements a generalisation to rectangular matrices too.)



The improvement over the other answers is mostly from a simpler (thus terser to express) algorithm; this program was originally written in Brachylog v2 ({piᶠ∋₎ᵐ+}ᶠot), but Jelly has some builtins for parts of the program that have to be spelled out in Brachylog, so this came out shorter.



Explanation



ZŒ!ÆṭṀ
Z Swap rows and columns
Œ! Find all permutations of rows (thus columns of the original)
Æṭ {For each permutation}, take the sum of the main diagonal
Ṁ Take the maximum


It should be clear that for any solution to the problem, we can permute the columns of the original matrix to put that solution onto the main diagonal. So this solution simply reverses that, finding all possible main diagonals of permutations.



Note that the "permute the columns" operation is done as "transpose, permute the rows" without bothering to transpose back; the rest of the algorithm happens to be symmetrical about the main diagonal, so we don't need to undo the transpose and thus can save a byte.






share|improve this answer























  • ZŒ!ÆṭṀ saves four bytes. Try it online!
    – Dennis
    Dec 18 at 0:09










  • Well it looks like Dennis got the last word in :P
    – Quintec
    Dec 18 at 1:09










  • I wonder if that builtin's ever come up before?
    – ais523
    2 days ago










  • Not sure, but probably not. I actually suggested ZŒ!ŒD§ṀḢ before remembering that Æṭ was a thing.
    – Dennis
    2 days ago



















8















J, 28 bytes



>./@({.+1$:@|:.|:@}.)@[^:]#


Try it online!



 >./ @  (   {.   +         1 $:@|:. |:@}.       )       @[^:] #
(max of (1st row + recursive call on each "minor")) or count of arg if 0


Here the recursive call is done by $: which represents the largest anonymous function containing it. We are lucky in J to have the primitive x u. y, which applies u to successive "outfixes" of y obtained by suppressing successive infixes of length x of the items in y; here we want to surpress successive columns to get "minors", so we transpose |: the lower rows (or tail }.) of y, and then recurse on the transpose of their outfixes.






share|improve this answer










New contributor




Olius is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.














  • 2




    Hi and welcome to PPCG! I added a Try it online link for your solution, so that others can verify it.
    – Galen Ivanov
    Dec 17 at 9:01



















7















Python 3, 94 90 89 84 80 bytes



-4 bytes thanks to xnor (using sets instead of lists)!





f=lambda x,y={-1}:x>and max(e+f(x[1:],y|{i})for(i,e)in enumerate(x[0])if{i}-y)


Try it online!






share|improve this answer























  • Nice method! You can make y a set to shorten the membership check: f=lambda x,y={-1}:x>and max(e+f(x[1:],y|{i})for(i,e)in enumerate(x[0])if{i}-y).
    – xnor
    Dec 17 at 6:08










  • @xnor: That -1 trick is really clever :) Thanks a lot!
    – BMO
    Dec 17 at 16:49



















7















Husk, 12 11 9 bytes



▲mȯΣ►L∂PT


Try it online!



Thanks to BMO for suggesting a port of ais523's answer and a 2-byte save, which I managed to improve on further, and in turn BMO shaved off 2 more bytes.





Previous solution (14 bytes)



▲moΣz!¹fS=uΠmŀ


Try it online!



I wasn't able to make a test suite because this answer uses the first command line argument command explicitly. But Husk doesn't use STDIN at all so I included all the test cases there, so you can just copy paste in the argument field to check it out. Also note that arrays in Husk may not contain spaces between elements while being inputted.



How it works?



Code breakdown



▲moΣz!¹fS=uΠmŀ     Full program. Takes a 2D list from CLA 1 and outputs to STDOUT.
mŀ Length range of each list.
Π Cartesian product.
fS=u Discard those combinations which have at least 1 non-unique element.
mo Map over the combinations with the following predicate:
z!¹ Zip the 2D list input with the current combination and index accordingly.
Σ Sum the resulting elements.
▲ Finally, pick the maximum.


Example



Let's pick an example: $$left(begin{matrix}1&4&2\5&6&1end{matrix}right)$$



One must pick exactly one index from each such that no two indices correspond. So, we generate the length ranges of the rows and only keep those without duplicates, yielding the following combinations (each combination is a column instead of a row to save space):



$$left(begin{matrix}color{red}{1}&color{blue}{2}&color{green}{1}&color{orange}{3}&2&color{pink}{3}\color{red}{2}&color{blue}{1}&color{green}{3}&color{orange}{1}&3&color{pink}{2}end{matrix}right)$$



Then, the program indexes in the input lists with each element of the combination, returning:



$$left(begin{matrix}
color{red}{1}&color{blue}{4}&color{green}{1}&color{orange}{2}&4&color{pink}{2}\
color{red}{6}&color{blue}{5}&color{green}{1}&color{orange}{5}&1&color{pink}{6}
end{matrix}right)$$



Summing all those results (here, each column, for the aforementioned reason), one obtains all possible valid sums according to the criteria, in this case $9$.






share|improve this answer































    5














    JavaScript (ES6),  74  71 bytes



    Thanks to @tsh for identifying 2 useless bytes that were used to fix a bug
    Saved 3 bytes thanks to @tsh





    f=([a,...r],k,i=1)=>a?Math.max(...a.map(n=>k&(i+=i)?-1/0:n+f(r,k|i))):0


    Try it online!






    share|improve this answer























    • @Shaggy but it is impossible to compose 0 from input array, -1+(-1) is -2 and it is correct answer.
      – val
      Dec 17 at 9:56






    • 1




      f=([a,...r],k,i=1)=>a?Math.max(...a.map(c=>k&(i+=i)?-1/0:c+f(r,k|i))):0 It's strange, but Math.max saves bytes...
      – tsh
      Dec 17 at 10:40





















    4















    Jelly, 13 12 bytes



    ẈŒpQƑƇị"€¹§Ṁ


    Try it online!



    Alternate version, 11 bytes



    ZLœ!Lị"€¹§Ṁ


    This uses the newly added œ! built-in, which generates all permutations of a given length.



    Try it online!



    How it works



    ẈŒpQƑƇị"€¹§Ṁ  Main link. Argument: M (matrix)

    Ẉ Widths; compute the length of each row.
    For an n×m matrix, this yields an array m copies of n.
    Œp Cartesian product; promote each n to [1, ..., n], then form all arrays
    that pick one k out of all m copies of [1, ..., n].
    QƑƇ Comb by fixed unique; keep only arrays that do not change by
    deduplicating their entries.
    ¹ Identity; yield M.
    ị"€ For each of the arrays of unique elements, use its m entries to index
    into the m rows of M.
    § Take the sums of all resulting vectors.
    Ṁ Take the maximum.





    share|improve this answer























    • Ah... I almost posted this same answer with XLṗL instead of J€Œp.
      – Erik the Outgolfer
      Dec 16 at 22:48





















    4















    Haskell, 65 bytes





    f(u:v)=maximum[e+f(take i<>drop(i+1)<$>v)|(i,e)<-zip[0..]u]
    f _=0


    Try it online!



    Explanation & Ungolfed



    The function take i<>drop(i+1) takes a list and removes the element at position i.



    The function f gets each possible element e at position i, removes the elements at position i from the remaining elements and adds e to the recursively computed optimum:



    f(u:v)=maximum[e+f(removeElementAt i<$>v)|(i,e)<-zip[0..]u]


    And the base case for the empty list is just 0:



    f _=0





    share|improve this answer





























      2















      Brachylog, 18 bytes



      {hl⟦kp;?z₀∋₍ᵐ+}ᶠot


      Try it online!



      Explanation



                      ot      The output is the biggest result of…
      { }ᶠ …finding all outputs to the following predicate:
      hl⟦k Construct the range [0, …, n-1]
      p Take a permutation of that range
      ;?z₀ Zip that permutation with the Input, stopping when all elements of
      the input are used (important because the range is possibly
      bigger than the length of the input)
      ∋₍ᵐ In each element of the zip, take the head'th element of the tail
      + Sum the result





      share|improve this answer





























        2















        Perl 6, 50 49 bytes





        {max map *.map({.[$++]}).sum,permutations [Z] $_}


        Try it online!



        Decently short, even despite the long permutations call. This is an anonymous code block that takes a list of lists and returns a number.



        Explanation:



        {                                               } # Anonymous code block
        max # Finds the maximum
        permutations # Of all permutations
        [Z] $_ # Of the transposed input
        map # When mapped to
        .sum # The sum of
        *.map({.[$++]}) # The diagonal of the matrix





        share|improve this answer































          2















          K (oK), 40, 32, 28, 19 bytes



          -13 bytes thanks to ngn!



          {|/+/(prm'x)@''!#x}


          Try it online!



          Initial solution:



          {|/+/'x./:/:(*t),'/:t:{x~?x}#+!(#x)##*x}


          Try it online!



          Note: Doesn't work for the first test case [[1]]



          Explanation:



          { } - function with argument x



                                             #     - creata a list
          (#x) - with length number of rows of x
          #*x - of the length of the first row
          ! - odometer (ranged permutations)
          + - transpose
          # - filter out the rows
          {x~?x} - that have duplicates
          t: - save it to t
          ,'/: - pair up each number in each row with
          (*t) - a number from the first row
          x./:/: - index x with each of the above
          +/' - find the sum of each row
          |/ - reduce by max





          share|improve this answer



















          • 1




            hint: prm can be applied directly to a list to generate its permutations
            – ngn
            2 days ago










          • @ngn Thanks! I wanted to use the main diagonal with =, but the result was longer. Is there flatten in oK?
            – Galen Ivanov
            2 days ago












          • flatten in what sense?
            – ngn
            2 days ago










          • @ngn (1 2 3; 4 5 6; 7 8 9) -> (1 2 3 4 5 6 7 8 9)
            – Galen Ivanov
            2 days ago






          • 1




            that's just ,/ or if you want it to go into deeper structures: ,//
            – ngn
            2 days ago



















          2















          Haskell, 65 bytes





          (%)
          p%(h:t)=maximum[x+(i:p)%t|(i,x)<-zip[0..]h,all(/=i)p]
          p%_=0


          Try it online!





          71 bytes





          f m=maximum[sum b|(a,b)<-unzip<$>mapM(zip[0..])m,[x|x<-a,y<-a,x==y]==a]


          Try it online!



          The [x|x<-a,y<-a,x==y]==a checks that the elements of a are distinct. This uses up a surprising number of characters, but I didn't see a shorter way.






          share|improve this answer





























            1














            Pyth, 15 12 bytes



            eSms@VQd.plh


            Try it online here.



            eSms@VQd.plhQ   Implicit: Q=eval(input())
            Trailing Q inferred
            lhQ Length of first element of Q
            .p Generate all permutaions of 0 to the above
            m Map the elements of the above, as d, using:
            @VQd Vectorised index into Q using d
            For i in [0-length(Q)), yield Q[i][d[i]]
            s Take the sum of the above
            S Sort the result of the map
            e Take the last element of the above, implicit print


            Edit: saved 3 bytes courtesy of issacg






            share|improve this answer



















            • 1




              .PUlhQl can be replaced by .plh. V implicitly ignores any extra entries.
              – isaacg
              Dec 18 at 1:06



















            1















            05AB1E, 18 13 bytes



            нgLœε‚øε`è]OZ


            I have the feeling it's overly long, but I'm not sure how to do vectorized indexing byte-efficiently in 05AB1E.. And I was indeed right that it was too long.. -5 bytes thanks to @Emigna.



            Try it online or verify all test cases.



            Explanation:





            н                # Take the first inner list (of the implicit input list of lists)
            g # Pop and take its length
            L # Create a list in the range [1, inner-length]
            œ # Create each possible permutation of this range-list
            ε # Map each permutation to:
            ‚ # Pair it with the (implicit) input
            ø # Transpose; swap rows/columns
            ε # Map each to:
            ` # Push both to the stack
            è # Index the permutation-nr into the inner list of the input
            ] # Close both maps
            O # Take the sum of each inner list
            à # Pop and push the maximum (and output implicitly)


            Example run:




            • Input: [[1,4,2],[5,6,1]]

            • After step 1 (нgL): [1,2,3]

            • After step 2 (œ): [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]

            • After step 3 (ε‚): [[[[1,4,2],[5,6,1]],[1,2,3]],[[[1,4,2],[5,6,1]],[1,3,2]],[[[1,4,2],[5,6,1]],[2,1,3]],[[[1,4,2],[5,6,1]],[2,3,1]],[[[1,4,2],[5,6,1]],[3,1,2]],[[[1,4,2],[5,6,1]],[3,2,1]]]

            • After step 4 (ø): [[[[1,4,2],1],[[5,6,1],2]],[[[1,4,2],1],[[5,6,1],3]],[[[1,4,2],2],[[5,6,1],1]],[[[1,4,2],2],[[5,6,1],3]],[[[1,4,2],3],[[5,6,1],1]],[[[1,4,2],3],[[5,6,1],2]]]

            • After step 5 (ε`è]): [[4,1],[4,5],[2,6],[2,5],[1,6],[1,1]] (NOTE: 05AB1E is 0-indexed (with automatic wraparound), so indexing 3 into [5,6,1] results in 5.)

            • After step 6 (O): [5,9,8,7,7,2]

            • Output / after step 7 (à): 9






            share|improve this answer



















            • 1




              I had нgLœε‚øεè]OZ` for 13.
              – Emigna
              2 days ago










            • @Emigna Thanks! It's surprisingly similar to what I had I see, except that I added a bunch of crap that was unnecessary. ;p
              – Kevin Cruijssen
              2 days ago



















            1














            Haskell, 84 bytes



            import Data.List
            h l=maximum[sum$snd<$>r|r<-mapM id$zip[1..]<$>l,(==)=<<nub$fst<$>r]


            Try it online!






            share|improve this answer





























              0















              Ruby, 74 72 69 bytes





              ->a{[*0...a[0].size].permutation.map{|x|a.zip(x).sum{|y,z|y[z]}}.max}


              Try it online!






              share|improve this answer































                0















                05AB1E, 7 bytes



                øœ€ÅOà


                Port of @ais523's Jelly CW answer, so make sure to upvote it as well!



                Try it online or verify all test cases.



                Explanation:





                ø          # Transpose the (implicit) input; swapping row/columns
                œ # Get all permutations
                ہ # Take the main diagonal of each
                O # Sum each
                à # Pop and push the maximum (which is output implicitly)





                share|improve this answer





























                  0















                  C# (.NET Core), 112 bytes





                  n=>Enumerable.Range(0,n[0].Count).Select(a=>n.Select(p=>p[a])).Aggregate(0,(k,l)=>k+l.Aggregate((q,w)=>w>q?w:q))


                  Try it online!



                  Inverts the rows and columns of the 2d list, then finds the largest number in each of the columns and adds them together.






                  share|improve this answer





















                  • This doesn't work for the third test case. You answer computes 5+6+2, but the right answer is 5+4.
                    – Dennis
                    23 hours ago











                  Your Answer





                  StackExchange.ifUsing("editor", function () {
                  return StackExchange.using("mathjaxEditing", function () {
                  StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
                  StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
                  });
                  });
                  }, "mathjax-editing");

                  StackExchange.ifUsing("editor", function () {
                  StackExchange.using("externalEditor", function () {
                  StackExchange.using("snippets", function () {
                  StackExchange.snippets.init();
                  });
                  });
                  }, "code-snippets");

                  StackExchange.ready(function() {
                  var channelOptions = {
                  tags: "".split(" "),
                  id: "200"
                  };
                  initTagRenderer("".split(" "), "".split(" "), channelOptions);

                  StackExchange.using("externalEditor", function() {
                  // Have to fire editor after snippets, if snippets enabled
                  if (StackExchange.settings.snippets.snippetsEnabled) {
                  StackExchange.using("snippets", function() {
                  createEditor();
                  });
                  }
                  else {
                  createEditor();
                  }
                  });

                  function createEditor() {
                  StackExchange.prepareEditor({
                  heartbeatType: 'answer',
                  autoActivateHeartbeat: false,
                  convertImagesToLinks: false,
                  noModals: true,
                  showLowRepImageUploadWarning: true,
                  reputationToPostImages: null,
                  bindNavPrevention: true,
                  postfix: "",
                  imageUploader: {
                  brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                  contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                  allowUrls: true
                  },
                  onDemand: true,
                  discardSelector: ".discard-answer"
                  ,immediatelyShowMarkdownHelp:true
                  });


                  }
                  });














                  draft saved

                  draft discarded


















                  StackExchange.ready(
                  function () {
                  StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodegolf.stackexchange.com%2fquestions%2f177673%2fnon-overlapping-matrix-sum%23new-answer', 'question_page');
                  }
                  );

                  Post as a guest















                  Required, but never shown

























                  17 Answers
                  17






                  active

                  oldest

                  votes








                  17 Answers
                  17






                  active

                  oldest

                  votes









                  active

                  oldest

                  votes






                  active

                  oldest

                  votes









                  9















                  Jelly, 10 6 bytes



                  ZŒ!ÆṭṀ


                  Try it online!



                  (4 bytes saved by @Dennis, who pointed out that Jelly had a "sum of main diagonal" builtin. I was not expecting it to have one of those; the previous solution implemented the operation without using the builtin. The operation in question, Æṭ, is defined as "trace", but the trace is only defined for square matrices; Jelly implements a generalisation to rectangular matrices too.)



                  The improvement over the other answers is mostly from a simpler (thus terser to express) algorithm; this program was originally written in Brachylog v2 ({piᶠ∋₎ᵐ+}ᶠot), but Jelly has some builtins for parts of the program that have to be spelled out in Brachylog, so this came out shorter.



                  Explanation



                  ZŒ!ÆṭṀ
                  Z Swap rows and columns
                  Œ! Find all permutations of rows (thus columns of the original)
                  Æṭ {For each permutation}, take the sum of the main diagonal
                  Ṁ Take the maximum


                  It should be clear that for any solution to the problem, we can permute the columns of the original matrix to put that solution onto the main diagonal. So this solution simply reverses that, finding all possible main diagonals of permutations.



                  Note that the "permute the columns" operation is done as "transpose, permute the rows" without bothering to transpose back; the rest of the algorithm happens to be symmetrical about the main diagonal, so we don't need to undo the transpose and thus can save a byte.






                  share|improve this answer























                  • ZŒ!ÆṭṀ saves four bytes. Try it online!
                    – Dennis
                    Dec 18 at 0:09










                  • Well it looks like Dennis got the last word in :P
                    – Quintec
                    Dec 18 at 1:09










                  • I wonder if that builtin's ever come up before?
                    – ais523
                    2 days ago










                  • Not sure, but probably not. I actually suggested ZŒ!ŒD§ṀḢ before remembering that Æṭ was a thing.
                    – Dennis
                    2 days ago
















                  9















                  Jelly, 10 6 bytes



                  ZŒ!ÆṭṀ


                  Try it online!



                  (4 bytes saved by @Dennis, who pointed out that Jelly had a "sum of main diagonal" builtin. I was not expecting it to have one of those; the previous solution implemented the operation without using the builtin. The operation in question, Æṭ, is defined as "trace", but the trace is only defined for square matrices; Jelly implements a generalisation to rectangular matrices too.)



                  The improvement over the other answers is mostly from a simpler (thus terser to express) algorithm; this program was originally written in Brachylog v2 ({piᶠ∋₎ᵐ+}ᶠot), but Jelly has some builtins for parts of the program that have to be spelled out in Brachylog, so this came out shorter.



                  Explanation



                  ZŒ!ÆṭṀ
                  Z Swap rows and columns
                  Œ! Find all permutations of rows (thus columns of the original)
                  Æṭ {For each permutation}, take the sum of the main diagonal
                  Ṁ Take the maximum


                  It should be clear that for any solution to the problem, we can permute the columns of the original matrix to put that solution onto the main diagonal. So this solution simply reverses that, finding all possible main diagonals of permutations.



                  Note that the "permute the columns" operation is done as "transpose, permute the rows" without bothering to transpose back; the rest of the algorithm happens to be symmetrical about the main diagonal, so we don't need to undo the transpose and thus can save a byte.






                  share|improve this answer























                  • ZŒ!ÆṭṀ saves four bytes. Try it online!
                    – Dennis
                    Dec 18 at 0:09










                  • Well it looks like Dennis got the last word in :P
                    – Quintec
                    Dec 18 at 1:09










                  • I wonder if that builtin's ever come up before?
                    – ais523
                    2 days ago










                  • Not sure, but probably not. I actually suggested ZŒ!ŒD§ṀḢ before remembering that Æṭ was a thing.
                    – Dennis
                    2 days ago














                  9












                  9








                  9







                  Jelly, 10 6 bytes



                  ZŒ!ÆṭṀ


                  Try it online!



                  (4 bytes saved by @Dennis, who pointed out that Jelly had a "sum of main diagonal" builtin. I was not expecting it to have one of those; the previous solution implemented the operation without using the builtin. The operation in question, Æṭ, is defined as "trace", but the trace is only defined for square matrices; Jelly implements a generalisation to rectangular matrices too.)



                  The improvement over the other answers is mostly from a simpler (thus terser to express) algorithm; this program was originally written in Brachylog v2 ({piᶠ∋₎ᵐ+}ᶠot), but Jelly has some builtins for parts of the program that have to be spelled out in Brachylog, so this came out shorter.



                  Explanation



                  ZŒ!ÆṭṀ
                  Z Swap rows and columns
                  Œ! Find all permutations of rows (thus columns of the original)
                  Æṭ {For each permutation}, take the sum of the main diagonal
                  Ṁ Take the maximum


                  It should be clear that for any solution to the problem, we can permute the columns of the original matrix to put that solution onto the main diagonal. So this solution simply reverses that, finding all possible main diagonals of permutations.



                  Note that the "permute the columns" operation is done as "transpose, permute the rows" without bothering to transpose back; the rest of the algorithm happens to be symmetrical about the main diagonal, so we don't need to undo the transpose and thus can save a byte.






                  share|improve this answer















                  Jelly, 10 6 bytes



                  ZŒ!ÆṭṀ


                  Try it online!



                  (4 bytes saved by @Dennis, who pointed out that Jelly had a "sum of main diagonal" builtin. I was not expecting it to have one of those; the previous solution implemented the operation without using the builtin. The operation in question, Æṭ, is defined as "trace", but the trace is only defined for square matrices; Jelly implements a generalisation to rectangular matrices too.)



                  The improvement over the other answers is mostly from a simpler (thus terser to express) algorithm; this program was originally written in Brachylog v2 ({piᶠ∋₎ᵐ+}ᶠot), but Jelly has some builtins for parts of the program that have to be spelled out in Brachylog, so this came out shorter.



                  Explanation



                  ZŒ!ÆṭṀ
                  Z Swap rows and columns
                  Œ! Find all permutations of rows (thus columns of the original)
                  Æṭ {For each permutation}, take the sum of the main diagonal
                  Ṁ Take the maximum


                  It should be clear that for any solution to the problem, we can permute the columns of the original matrix to put that solution onto the main diagonal. So this solution simply reverses that, finding all possible main diagonals of permutations.



                  Note that the "permute the columns" operation is done as "transpose, permute the rows" without bothering to transpose back; the rest of the algorithm happens to be symmetrical about the main diagonal, so we don't need to undo the transpose and thus can save a byte.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited 2 days ago


























                  community wiki





                  2 revs
                  ais523













                  • ZŒ!ÆṭṀ saves four bytes. Try it online!
                    – Dennis
                    Dec 18 at 0:09










                  • Well it looks like Dennis got the last word in :P
                    – Quintec
                    Dec 18 at 1:09










                  • I wonder if that builtin's ever come up before?
                    – ais523
                    2 days ago










                  • Not sure, but probably not. I actually suggested ZŒ!ŒD§ṀḢ before remembering that Æṭ was a thing.
                    – Dennis
                    2 days ago


















                  • ZŒ!ÆṭṀ saves four bytes. Try it online!
                    – Dennis
                    Dec 18 at 0:09










                  • Well it looks like Dennis got the last word in :P
                    – Quintec
                    Dec 18 at 1:09










                  • I wonder if that builtin's ever come up before?
                    – ais523
                    2 days ago










                  • Not sure, but probably not. I actually suggested ZŒ!ŒD§ṀḢ before remembering that Æṭ was a thing.
                    – Dennis
                    2 days ago
















                  ZŒ!ÆṭṀ saves four bytes. Try it online!
                  – Dennis
                  Dec 18 at 0:09




                  ZŒ!ÆṭṀ saves four bytes. Try it online!
                  – Dennis
                  Dec 18 at 0:09












                  Well it looks like Dennis got the last word in :P
                  – Quintec
                  Dec 18 at 1:09




                  Well it looks like Dennis got the last word in :P
                  – Quintec
                  Dec 18 at 1:09












                  I wonder if that builtin's ever come up before?
                  – ais523
                  2 days ago




                  I wonder if that builtin's ever come up before?
                  – ais523
                  2 days ago












                  Not sure, but probably not. I actually suggested ZŒ!ŒD§ṀḢ before remembering that Æṭ was a thing.
                  – Dennis
                  2 days ago




                  Not sure, but probably not. I actually suggested ZŒ!ŒD§ṀḢ before remembering that Æṭ was a thing.
                  – Dennis
                  2 days ago











                  8















                  J, 28 bytes



                  >./@({.+1$:@|:.|:@}.)@[^:]#


                  Try it online!



                   >./ @  (   {.   +         1 $:@|:. |:@}.       )       @[^:] #
                  (max of (1st row + recursive call on each "minor")) or count of arg if 0


                  Here the recursive call is done by $: which represents the largest anonymous function containing it. We are lucky in J to have the primitive x u. y, which applies u to successive "outfixes" of y obtained by suppressing successive infixes of length x of the items in y; here we want to surpress successive columns to get "minors", so we transpose |: the lower rows (or tail }.) of y, and then recurse on the transpose of their outfixes.






                  share|improve this answer










                  New contributor




                  Olius is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.














                  • 2




                    Hi and welcome to PPCG! I added a Try it online link for your solution, so that others can verify it.
                    – Galen Ivanov
                    Dec 17 at 9:01
















                  8















                  J, 28 bytes



                  >./@({.+1$:@|:.|:@}.)@[^:]#


                  Try it online!



                   >./ @  (   {.   +         1 $:@|:. |:@}.       )       @[^:] #
                  (max of (1st row + recursive call on each "minor")) or count of arg if 0


                  Here the recursive call is done by $: which represents the largest anonymous function containing it. We are lucky in J to have the primitive x u. y, which applies u to successive "outfixes" of y obtained by suppressing successive infixes of length x of the items in y; here we want to surpress successive columns to get "minors", so we transpose |: the lower rows (or tail }.) of y, and then recurse on the transpose of their outfixes.






                  share|improve this answer










                  New contributor




                  Olius is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.














                  • 2




                    Hi and welcome to PPCG! I added a Try it online link for your solution, so that others can verify it.
                    – Galen Ivanov
                    Dec 17 at 9:01














                  8












                  8








                  8







                  J, 28 bytes



                  >./@({.+1$:@|:.|:@}.)@[^:]#


                  Try it online!



                   >./ @  (   {.   +         1 $:@|:. |:@}.       )       @[^:] #
                  (max of (1st row + recursive call on each "minor")) or count of arg if 0


                  Here the recursive call is done by $: which represents the largest anonymous function containing it. We are lucky in J to have the primitive x u. y, which applies u to successive "outfixes" of y obtained by suppressing successive infixes of length x of the items in y; here we want to surpress successive columns to get "minors", so we transpose |: the lower rows (or tail }.) of y, and then recurse on the transpose of their outfixes.






                  share|improve this answer










                  New contributor




                  Olius is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.










                  J, 28 bytes



                  >./@({.+1$:@|:.|:@}.)@[^:]#


                  Try it online!



                   >./ @  (   {.   +         1 $:@|:. |:@}.       )       @[^:] #
                  (max of (1st row + recursive call on each "minor")) or count of arg if 0


                  Here the recursive call is done by $: which represents the largest anonymous function containing it. We are lucky in J to have the primitive x u. y, which applies u to successive "outfixes" of y obtained by suppressing successive infixes of length x of the items in y; here we want to surpress successive columns to get "minors", so we transpose |: the lower rows (or tail }.) of y, and then recurse on the transpose of their outfixes.







                  share|improve this answer










                  New contributor




                  Olius is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  share|improve this answer



                  share|improve this answer








                  edited Dec 17 at 9:01









                  Galen Ivanov

                  6,27711032




                  6,27711032






                  New contributor




                  Olius is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  answered Dec 17 at 4:02









                  Olius

                  811




                  811




                  New contributor




                  Olius is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.





                  New contributor





                  Olius is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.






                  Olius is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.








                  • 2




                    Hi and welcome to PPCG! I added a Try it online link for your solution, so that others can verify it.
                    – Galen Ivanov
                    Dec 17 at 9:01














                  • 2




                    Hi and welcome to PPCG! I added a Try it online link for your solution, so that others can verify it.
                    – Galen Ivanov
                    Dec 17 at 9:01








                  2




                  2




                  Hi and welcome to PPCG! I added a Try it online link for your solution, so that others can verify it.
                  – Galen Ivanov
                  Dec 17 at 9:01




                  Hi and welcome to PPCG! I added a Try it online link for your solution, so that others can verify it.
                  – Galen Ivanov
                  Dec 17 at 9:01











                  7















                  Python 3, 94 90 89 84 80 bytes



                  -4 bytes thanks to xnor (using sets instead of lists)!





                  f=lambda x,y={-1}:x>and max(e+f(x[1:],y|{i})for(i,e)in enumerate(x[0])if{i}-y)


                  Try it online!






                  share|improve this answer























                  • Nice method! You can make y a set to shorten the membership check: f=lambda x,y={-1}:x>and max(e+f(x[1:],y|{i})for(i,e)in enumerate(x[0])if{i}-y).
                    – xnor
                    Dec 17 at 6:08










                  • @xnor: That -1 trick is really clever :) Thanks a lot!
                    – BMO
                    Dec 17 at 16:49
















                  7















                  Python 3, 94 90 89 84 80 bytes



                  -4 bytes thanks to xnor (using sets instead of lists)!





                  f=lambda x,y={-1}:x>and max(e+f(x[1:],y|{i})for(i,e)in enumerate(x[0])if{i}-y)


                  Try it online!






                  share|improve this answer























                  • Nice method! You can make y a set to shorten the membership check: f=lambda x,y={-1}:x>and max(e+f(x[1:],y|{i})for(i,e)in enumerate(x[0])if{i}-y).
                    – xnor
                    Dec 17 at 6:08










                  • @xnor: That -1 trick is really clever :) Thanks a lot!
                    – BMO
                    Dec 17 at 16:49














                  7












                  7








                  7







                  Python 3, 94 90 89 84 80 bytes



                  -4 bytes thanks to xnor (using sets instead of lists)!





                  f=lambda x,y={-1}:x>and max(e+f(x[1:],y|{i})for(i,e)in enumerate(x[0])if{i}-y)


                  Try it online!






                  share|improve this answer















                  Python 3, 94 90 89 84 80 bytes



                  -4 bytes thanks to xnor (using sets instead of lists)!





                  f=lambda x,y={-1}:x>and max(e+f(x[1:],y|{i})for(i,e)in enumerate(x[0])if{i}-y)


                  Try it online!







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Dec 17 at 16:48

























                  answered Dec 16 at 22:12









                  BMO

                  11.3k22184




                  11.3k22184












                  • Nice method! You can make y a set to shorten the membership check: f=lambda x,y={-1}:x>and max(e+f(x[1:],y|{i})for(i,e)in enumerate(x[0])if{i}-y).
                    – xnor
                    Dec 17 at 6:08










                  • @xnor: That -1 trick is really clever :) Thanks a lot!
                    – BMO
                    Dec 17 at 16:49


















                  • Nice method! You can make y a set to shorten the membership check: f=lambda x,y={-1}:x>and max(e+f(x[1:],y|{i})for(i,e)in enumerate(x[0])if{i}-y).
                    – xnor
                    Dec 17 at 6:08










                  • @xnor: That -1 trick is really clever :) Thanks a lot!
                    – BMO
                    Dec 17 at 16:49
















                  Nice method! You can make y a set to shorten the membership check: f=lambda x,y={-1}:x>and max(e+f(x[1:],y|{i})for(i,e)in enumerate(x[0])if{i}-y).
                  – xnor
                  Dec 17 at 6:08




                  Nice method! You can make y a set to shorten the membership check: f=lambda x,y={-1}:x>and max(e+f(x[1:],y|{i})for(i,e)in enumerate(x[0])if{i}-y).
                  – xnor
                  Dec 17 at 6:08












                  @xnor: That -1 trick is really clever :) Thanks a lot!
                  – BMO
                  Dec 17 at 16:49




                  @xnor: That -1 trick is really clever :) Thanks a lot!
                  – BMO
                  Dec 17 at 16:49











                  7















                  Husk, 12 11 9 bytes



                  ▲mȯΣ►L∂PT


                  Try it online!



                  Thanks to BMO for suggesting a port of ais523's answer and a 2-byte save, which I managed to improve on further, and in turn BMO shaved off 2 more bytes.





                  Previous solution (14 bytes)



                  ▲moΣz!¹fS=uΠmŀ


                  Try it online!



                  I wasn't able to make a test suite because this answer uses the first command line argument command explicitly. But Husk doesn't use STDIN at all so I included all the test cases there, so you can just copy paste in the argument field to check it out. Also note that arrays in Husk may not contain spaces between elements while being inputted.



                  How it works?



                  Code breakdown



                  ▲moΣz!¹fS=uΠmŀ     Full program. Takes a 2D list from CLA 1 and outputs to STDOUT.
                  mŀ Length range of each list.
                  Π Cartesian product.
                  fS=u Discard those combinations which have at least 1 non-unique element.
                  mo Map over the combinations with the following predicate:
                  z!¹ Zip the 2D list input with the current combination and index accordingly.
                  Σ Sum the resulting elements.
                  ▲ Finally, pick the maximum.


                  Example



                  Let's pick an example: $$left(begin{matrix}1&4&2\5&6&1end{matrix}right)$$



                  One must pick exactly one index from each such that no two indices correspond. So, we generate the length ranges of the rows and only keep those without duplicates, yielding the following combinations (each combination is a column instead of a row to save space):



                  $$left(begin{matrix}color{red}{1}&color{blue}{2}&color{green}{1}&color{orange}{3}&2&color{pink}{3}\color{red}{2}&color{blue}{1}&color{green}{3}&color{orange}{1}&3&color{pink}{2}end{matrix}right)$$



                  Then, the program indexes in the input lists with each element of the combination, returning:



                  $$left(begin{matrix}
                  color{red}{1}&color{blue}{4}&color{green}{1}&color{orange}{2}&4&color{pink}{2}\
                  color{red}{6}&color{blue}{5}&color{green}{1}&color{orange}{5}&1&color{pink}{6}
                  end{matrix}right)$$



                  Summing all those results (here, each column, for the aforementioned reason), one obtains all possible valid sums according to the criteria, in this case $9$.






                  share|improve this answer




























                    7















                    Husk, 12 11 9 bytes



                    ▲mȯΣ►L∂PT


                    Try it online!



                    Thanks to BMO for suggesting a port of ais523's answer and a 2-byte save, which I managed to improve on further, and in turn BMO shaved off 2 more bytes.





                    Previous solution (14 bytes)



                    ▲moΣz!¹fS=uΠmŀ


                    Try it online!



                    I wasn't able to make a test suite because this answer uses the first command line argument command explicitly. But Husk doesn't use STDIN at all so I included all the test cases there, so you can just copy paste in the argument field to check it out. Also note that arrays in Husk may not contain spaces between elements while being inputted.



                    How it works?



                    Code breakdown



                    ▲moΣz!¹fS=uΠmŀ     Full program. Takes a 2D list from CLA 1 and outputs to STDOUT.
                    mŀ Length range of each list.
                    Π Cartesian product.
                    fS=u Discard those combinations which have at least 1 non-unique element.
                    mo Map over the combinations with the following predicate:
                    z!¹ Zip the 2D list input with the current combination and index accordingly.
                    Σ Sum the resulting elements.
                    ▲ Finally, pick the maximum.


                    Example



                    Let's pick an example: $$left(begin{matrix}1&4&2\5&6&1end{matrix}right)$$



                    One must pick exactly one index from each such that no two indices correspond. So, we generate the length ranges of the rows and only keep those without duplicates, yielding the following combinations (each combination is a column instead of a row to save space):



                    $$left(begin{matrix}color{red}{1}&color{blue}{2}&color{green}{1}&color{orange}{3}&2&color{pink}{3}\color{red}{2}&color{blue}{1}&color{green}{3}&color{orange}{1}&3&color{pink}{2}end{matrix}right)$$



                    Then, the program indexes in the input lists with each element of the combination, returning:



                    $$left(begin{matrix}
                    color{red}{1}&color{blue}{4}&color{green}{1}&color{orange}{2}&4&color{pink}{2}\
                    color{red}{6}&color{blue}{5}&color{green}{1}&color{orange}{5}&1&color{pink}{6}
                    end{matrix}right)$$



                    Summing all those results (here, each column, for the aforementioned reason), one obtains all possible valid sums according to the criteria, in this case $9$.






                    share|improve this answer


























                      7












                      7








                      7







                      Husk, 12 11 9 bytes



                      ▲mȯΣ►L∂PT


                      Try it online!



                      Thanks to BMO for suggesting a port of ais523's answer and a 2-byte save, which I managed to improve on further, and in turn BMO shaved off 2 more bytes.





                      Previous solution (14 bytes)



                      ▲moΣz!¹fS=uΠmŀ


                      Try it online!



                      I wasn't able to make a test suite because this answer uses the first command line argument command explicitly. But Husk doesn't use STDIN at all so I included all the test cases there, so you can just copy paste in the argument field to check it out. Also note that arrays in Husk may not contain spaces between elements while being inputted.



                      How it works?



                      Code breakdown



                      ▲moΣz!¹fS=uΠmŀ     Full program. Takes a 2D list from CLA 1 and outputs to STDOUT.
                      mŀ Length range of each list.
                      Π Cartesian product.
                      fS=u Discard those combinations which have at least 1 non-unique element.
                      mo Map over the combinations with the following predicate:
                      z!¹ Zip the 2D list input with the current combination and index accordingly.
                      Σ Sum the resulting elements.
                      ▲ Finally, pick the maximum.


                      Example



                      Let's pick an example: $$left(begin{matrix}1&4&2\5&6&1end{matrix}right)$$



                      One must pick exactly one index from each such that no two indices correspond. So, we generate the length ranges of the rows and only keep those without duplicates, yielding the following combinations (each combination is a column instead of a row to save space):



                      $$left(begin{matrix}color{red}{1}&color{blue}{2}&color{green}{1}&color{orange}{3}&2&color{pink}{3}\color{red}{2}&color{blue}{1}&color{green}{3}&color{orange}{1}&3&color{pink}{2}end{matrix}right)$$



                      Then, the program indexes in the input lists with each element of the combination, returning:



                      $$left(begin{matrix}
                      color{red}{1}&color{blue}{4}&color{green}{1}&color{orange}{2}&4&color{pink}{2}\
                      color{red}{6}&color{blue}{5}&color{green}{1}&color{orange}{5}&1&color{pink}{6}
                      end{matrix}right)$$



                      Summing all those results (here, each column, for the aforementioned reason), one obtains all possible valid sums according to the criteria, in this case $9$.






                      share|improve this answer















                      Husk, 12 11 9 bytes



                      ▲mȯΣ►L∂PT


                      Try it online!



                      Thanks to BMO for suggesting a port of ais523's answer and a 2-byte save, which I managed to improve on further, and in turn BMO shaved off 2 more bytes.





                      Previous solution (14 bytes)



                      ▲moΣz!¹fS=uΠmŀ


                      Try it online!



                      I wasn't able to make a test suite because this answer uses the first command line argument command explicitly. But Husk doesn't use STDIN at all so I included all the test cases there, so you can just copy paste in the argument field to check it out. Also note that arrays in Husk may not contain spaces between elements while being inputted.



                      How it works?



                      Code breakdown



                      ▲moΣz!¹fS=uΠmŀ     Full program. Takes a 2D list from CLA 1 and outputs to STDOUT.
                      mŀ Length range of each list.
                      Π Cartesian product.
                      fS=u Discard those combinations which have at least 1 non-unique element.
                      mo Map over the combinations with the following predicate:
                      z!¹ Zip the 2D list input with the current combination and index accordingly.
                      Σ Sum the resulting elements.
                      ▲ Finally, pick the maximum.


                      Example



                      Let's pick an example: $$left(begin{matrix}1&4&2\5&6&1end{matrix}right)$$



                      One must pick exactly one index from each such that no two indices correspond. So, we generate the length ranges of the rows and only keep those without duplicates, yielding the following combinations (each combination is a column instead of a row to save space):



                      $$left(begin{matrix}color{red}{1}&color{blue}{2}&color{green}{1}&color{orange}{3}&2&color{pink}{3}\color{red}{2}&color{blue}{1}&color{green}{3}&color{orange}{1}&3&color{pink}{2}end{matrix}right)$$



                      Then, the program indexes in the input lists with each element of the combination, returning:



                      $$left(begin{matrix}
                      color{red}{1}&color{blue}{4}&color{green}{1}&color{orange}{2}&4&color{pink}{2}\
                      color{red}{6}&color{blue}{5}&color{green}{1}&color{orange}{5}&1&color{pink}{6}
                      end{matrix}right)$$



                      Summing all those results (here, each column, for the aforementioned reason), one obtains all possible valid sums according to the criteria, in this case $9$.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited 2 days ago

























                      answered Dec 17 at 9:22









                      Mr. Xcoder

                      31.4k759198




                      31.4k759198























                          5














                          JavaScript (ES6),  74  71 bytes



                          Thanks to @tsh for identifying 2 useless bytes that were used to fix a bug
                          Saved 3 bytes thanks to @tsh





                          f=([a,...r],k,i=1)=>a?Math.max(...a.map(n=>k&(i+=i)?-1/0:n+f(r,k|i))):0


                          Try it online!






                          share|improve this answer























                          • @Shaggy but it is impossible to compose 0 from input array, -1+(-1) is -2 and it is correct answer.
                            – val
                            Dec 17 at 9:56






                          • 1




                            f=([a,...r],k,i=1)=>a?Math.max(...a.map(c=>k&(i+=i)?-1/0:c+f(r,k|i))):0 It's strange, but Math.max saves bytes...
                            – tsh
                            Dec 17 at 10:40


















                          5














                          JavaScript (ES6),  74  71 bytes



                          Thanks to @tsh for identifying 2 useless bytes that were used to fix a bug
                          Saved 3 bytes thanks to @tsh





                          f=([a,...r],k,i=1)=>a?Math.max(...a.map(n=>k&(i+=i)?-1/0:n+f(r,k|i))):0


                          Try it online!






                          share|improve this answer























                          • @Shaggy but it is impossible to compose 0 from input array, -1+(-1) is -2 and it is correct answer.
                            – val
                            Dec 17 at 9:56






                          • 1




                            f=([a,...r],k,i=1)=>a?Math.max(...a.map(c=>k&(i+=i)?-1/0:c+f(r,k|i))):0 It's strange, but Math.max saves bytes...
                            – tsh
                            Dec 17 at 10:40
















                          5












                          5








                          5






                          JavaScript (ES6),  74  71 bytes



                          Thanks to @tsh for identifying 2 useless bytes that were used to fix a bug
                          Saved 3 bytes thanks to @tsh





                          f=([a,...r],k,i=1)=>a?Math.max(...a.map(n=>k&(i+=i)?-1/0:n+f(r,k|i))):0


                          Try it online!






                          share|improve this answer














                          JavaScript (ES6),  74  71 bytes



                          Thanks to @tsh for identifying 2 useless bytes that were used to fix a bug
                          Saved 3 bytes thanks to @tsh





                          f=([a,...r],k,i=1)=>a?Math.max(...a.map(n=>k&(i+=i)?-1/0:n+f(r,k|i))):0


                          Try it online!







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Dec 17 at 10:54

























                          answered Dec 16 at 21:57









                          Arnauld

                          72.1k688302




                          72.1k688302












                          • @Shaggy but it is impossible to compose 0 from input array, -1+(-1) is -2 and it is correct answer.
                            – val
                            Dec 17 at 9:56






                          • 1




                            f=([a,...r],k,i=1)=>a?Math.max(...a.map(c=>k&(i+=i)?-1/0:c+f(r,k|i))):0 It's strange, but Math.max saves bytes...
                            – tsh
                            Dec 17 at 10:40




















                          • @Shaggy but it is impossible to compose 0 from input array, -1+(-1) is -2 and it is correct answer.
                            – val
                            Dec 17 at 9:56






                          • 1




                            f=([a,...r],k,i=1)=>a?Math.max(...a.map(c=>k&(i+=i)?-1/0:c+f(r,k|i))):0 It's strange, but Math.max saves bytes...
                            – tsh
                            Dec 17 at 10:40


















                          @Shaggy but it is impossible to compose 0 from input array, -1+(-1) is -2 and it is correct answer.
                          – val
                          Dec 17 at 9:56




                          @Shaggy but it is impossible to compose 0 from input array, -1+(-1) is -2 and it is correct answer.
                          – val
                          Dec 17 at 9:56




                          1




                          1




                          f=([a,...r],k,i=1)=>a?Math.max(...a.map(c=>k&(i+=i)?-1/0:c+f(r,k|i))):0 It's strange, but Math.max saves bytes...
                          – tsh
                          Dec 17 at 10:40






                          f=([a,...r],k,i=1)=>a?Math.max(...a.map(c=>k&(i+=i)?-1/0:c+f(r,k|i))):0 It's strange, but Math.max saves bytes...
                          – tsh
                          Dec 17 at 10:40













                          4















                          Jelly, 13 12 bytes



                          ẈŒpQƑƇị"€¹§Ṁ


                          Try it online!



                          Alternate version, 11 bytes



                          ZLœ!Lị"€¹§Ṁ


                          This uses the newly added œ! built-in, which generates all permutations of a given length.



                          Try it online!



                          How it works



                          ẈŒpQƑƇị"€¹§Ṁ  Main link. Argument: M (matrix)

                          Ẉ Widths; compute the length of each row.
                          For an n×m matrix, this yields an array m copies of n.
                          Œp Cartesian product; promote each n to [1, ..., n], then form all arrays
                          that pick one k out of all m copies of [1, ..., n].
                          QƑƇ Comb by fixed unique; keep only arrays that do not change by
                          deduplicating their entries.
                          ¹ Identity; yield M.
                          ị"€ For each of the arrays of unique elements, use its m entries to index
                          into the m rows of M.
                          § Take the sums of all resulting vectors.
                          Ṁ Take the maximum.





                          share|improve this answer























                          • Ah... I almost posted this same answer with XLṗL instead of J€Œp.
                            – Erik the Outgolfer
                            Dec 16 at 22:48


















                          4















                          Jelly, 13 12 bytes



                          ẈŒpQƑƇị"€¹§Ṁ


                          Try it online!



                          Alternate version, 11 bytes



                          ZLœ!Lị"€¹§Ṁ


                          This uses the newly added œ! built-in, which generates all permutations of a given length.



                          Try it online!



                          How it works



                          ẈŒpQƑƇị"€¹§Ṁ  Main link. Argument: M (matrix)

                          Ẉ Widths; compute the length of each row.
                          For an n×m matrix, this yields an array m copies of n.
                          Œp Cartesian product; promote each n to [1, ..., n], then form all arrays
                          that pick one k out of all m copies of [1, ..., n].
                          QƑƇ Comb by fixed unique; keep only arrays that do not change by
                          deduplicating their entries.
                          ¹ Identity; yield M.
                          ị"€ For each of the arrays of unique elements, use its m entries to index
                          into the m rows of M.
                          § Take the sums of all resulting vectors.
                          Ṁ Take the maximum.





                          share|improve this answer























                          • Ah... I almost posted this same answer with XLṗL instead of J€Œp.
                            – Erik the Outgolfer
                            Dec 16 at 22:48
















                          4












                          4








                          4







                          Jelly, 13 12 bytes



                          ẈŒpQƑƇị"€¹§Ṁ


                          Try it online!



                          Alternate version, 11 bytes



                          ZLœ!Lị"€¹§Ṁ


                          This uses the newly added œ! built-in, which generates all permutations of a given length.



                          Try it online!



                          How it works



                          ẈŒpQƑƇị"€¹§Ṁ  Main link. Argument: M (matrix)

                          Ẉ Widths; compute the length of each row.
                          For an n×m matrix, this yields an array m copies of n.
                          Œp Cartesian product; promote each n to [1, ..., n], then form all arrays
                          that pick one k out of all m copies of [1, ..., n].
                          QƑƇ Comb by fixed unique; keep only arrays that do not change by
                          deduplicating their entries.
                          ¹ Identity; yield M.
                          ị"€ For each of the arrays of unique elements, use its m entries to index
                          into the m rows of M.
                          § Take the sums of all resulting vectors.
                          Ṁ Take the maximum.





                          share|improve this answer















                          Jelly, 13 12 bytes



                          ẈŒpQƑƇị"€¹§Ṁ


                          Try it online!



                          Alternate version, 11 bytes



                          ZLœ!Lị"€¹§Ṁ


                          This uses the newly added œ! built-in, which generates all permutations of a given length.



                          Try it online!



                          How it works



                          ẈŒpQƑƇị"€¹§Ṁ  Main link. Argument: M (matrix)

                          Ẉ Widths; compute the length of each row.
                          For an n×m matrix, this yields an array m copies of n.
                          Œp Cartesian product; promote each n to [1, ..., n], then form all arrays
                          that pick one k out of all m copies of [1, ..., n].
                          QƑƇ Comb by fixed unique; keep only arrays that do not change by
                          deduplicating their entries.
                          ¹ Identity; yield M.
                          ị"€ For each of the arrays of unique elements, use its m entries to index
                          into the m rows of M.
                          § Take the sums of all resulting vectors.
                          Ṁ Take the maximum.






                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Dec 17 at 2:51

























                          answered Dec 16 at 22:46









                          Dennis

                          186k32295735




                          186k32295735












                          • Ah... I almost posted this same answer with XLṗL instead of J€Œp.
                            – Erik the Outgolfer
                            Dec 16 at 22:48




















                          • Ah... I almost posted this same answer with XLṗL instead of J€Œp.
                            – Erik the Outgolfer
                            Dec 16 at 22:48


















                          Ah... I almost posted this same answer with XLṗL instead of J€Œp.
                          – Erik the Outgolfer
                          Dec 16 at 22:48






                          Ah... I almost posted this same answer with XLṗL instead of J€Œp.
                          – Erik the Outgolfer
                          Dec 16 at 22:48













                          4















                          Haskell, 65 bytes





                          f(u:v)=maximum[e+f(take i<>drop(i+1)<$>v)|(i,e)<-zip[0..]u]
                          f _=0


                          Try it online!



                          Explanation & Ungolfed



                          The function take i<>drop(i+1) takes a list and removes the element at position i.



                          The function f gets each possible element e at position i, removes the elements at position i from the remaining elements and adds e to the recursively computed optimum:



                          f(u:v)=maximum[e+f(removeElementAt i<$>v)|(i,e)<-zip[0..]u]


                          And the base case for the empty list is just 0:



                          f _=0





                          share|improve this answer


























                            4















                            Haskell, 65 bytes





                            f(u:v)=maximum[e+f(take i<>drop(i+1)<$>v)|(i,e)<-zip[0..]u]
                            f _=0


                            Try it online!



                            Explanation & Ungolfed



                            The function take i<>drop(i+1) takes a list and removes the element at position i.



                            The function f gets each possible element e at position i, removes the elements at position i from the remaining elements and adds e to the recursively computed optimum:



                            f(u:v)=maximum[e+f(removeElementAt i<$>v)|(i,e)<-zip[0..]u]


                            And the base case for the empty list is just 0:



                            f _=0





                            share|improve this answer
























                              4












                              4








                              4







                              Haskell, 65 bytes





                              f(u:v)=maximum[e+f(take i<>drop(i+1)<$>v)|(i,e)<-zip[0..]u]
                              f _=0


                              Try it online!



                              Explanation & Ungolfed



                              The function take i<>drop(i+1) takes a list and removes the element at position i.



                              The function f gets each possible element e at position i, removes the elements at position i from the remaining elements and adds e to the recursively computed optimum:



                              f(u:v)=maximum[e+f(removeElementAt i<$>v)|(i,e)<-zip[0..]u]


                              And the base case for the empty list is just 0:



                              f _=0





                              share|improve this answer













                              Haskell, 65 bytes





                              f(u:v)=maximum[e+f(take i<>drop(i+1)<$>v)|(i,e)<-zip[0..]u]
                              f _=0


                              Try it online!



                              Explanation & Ungolfed



                              The function take i<>drop(i+1) takes a list and removes the element at position i.



                              The function f gets each possible element e at position i, removes the elements at position i from the remaining elements and adds e to the recursively computed optimum:



                              f(u:v)=maximum[e+f(removeElementAt i<$>v)|(i,e)<-zip[0..]u]


                              And the base case for the empty list is just 0:



                              f _=0






                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered 2 days ago









                              BMO

                              11.3k22184




                              11.3k22184























                                  2















                                  Brachylog, 18 bytes



                                  {hl⟦kp;?z₀∋₍ᵐ+}ᶠot


                                  Try it online!



                                  Explanation



                                                  ot      The output is the biggest result of…
                                  { }ᶠ …finding all outputs to the following predicate:
                                  hl⟦k Construct the range [0, …, n-1]
                                  p Take a permutation of that range
                                  ;?z₀ Zip that permutation with the Input, stopping when all elements of
                                  the input are used (important because the range is possibly
                                  bigger than the length of the input)
                                  ∋₍ᵐ In each element of the zip, take the head'th element of the tail
                                  + Sum the result





                                  share|improve this answer


























                                    2















                                    Brachylog, 18 bytes



                                    {hl⟦kp;?z₀∋₍ᵐ+}ᶠot


                                    Try it online!



                                    Explanation



                                                    ot      The output is the biggest result of…
                                    { }ᶠ …finding all outputs to the following predicate:
                                    hl⟦k Construct the range [0, …, n-1]
                                    p Take a permutation of that range
                                    ;?z₀ Zip that permutation with the Input, stopping when all elements of
                                    the input are used (important because the range is possibly
                                    bigger than the length of the input)
                                    ∋₍ᵐ In each element of the zip, take the head'th element of the tail
                                    + Sum the result





                                    share|improve this answer
























                                      2












                                      2








                                      2







                                      Brachylog, 18 bytes



                                      {hl⟦kp;?z₀∋₍ᵐ+}ᶠot


                                      Try it online!



                                      Explanation



                                                      ot      The output is the biggest result of…
                                      { }ᶠ …finding all outputs to the following predicate:
                                      hl⟦k Construct the range [0, …, n-1]
                                      p Take a permutation of that range
                                      ;?z₀ Zip that permutation with the Input, stopping when all elements of
                                      the input are used (important because the range is possibly
                                      bigger than the length of the input)
                                      ∋₍ᵐ In each element of the zip, take the head'th element of the tail
                                      + Sum the result





                                      share|improve this answer













                                      Brachylog, 18 bytes



                                      {hl⟦kp;?z₀∋₍ᵐ+}ᶠot


                                      Try it online!



                                      Explanation



                                                      ot      The output is the biggest result of…
                                      { }ᶠ …finding all outputs to the following predicate:
                                      hl⟦k Construct the range [0, …, n-1]
                                      p Take a permutation of that range
                                      ;?z₀ Zip that permutation with the Input, stopping when all elements of
                                      the input are used (important because the range is possibly
                                      bigger than the length of the input)
                                      ∋₍ᵐ In each element of the zip, take the head'th element of the tail
                                      + Sum the result






                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered Dec 17 at 14:43









                                      Fatalize

                                      27k448134




                                      27k448134























                                          2















                                          Perl 6, 50 49 bytes





                                          {max map *.map({.[$++]}).sum,permutations [Z] $_}


                                          Try it online!



                                          Decently short, even despite the long permutations call. This is an anonymous code block that takes a list of lists and returns a number.



                                          Explanation:



                                          {                                               } # Anonymous code block
                                          max # Finds the maximum
                                          permutations # Of all permutations
                                          [Z] $_ # Of the transposed input
                                          map # When mapped to
                                          .sum # The sum of
                                          *.map({.[$++]}) # The diagonal of the matrix





                                          share|improve this answer




























                                            2















                                            Perl 6, 50 49 bytes





                                            {max map *.map({.[$++]}).sum,permutations [Z] $_}


                                            Try it online!



                                            Decently short, even despite the long permutations call. This is an anonymous code block that takes a list of lists and returns a number.



                                            Explanation:



                                            {                                               } # Anonymous code block
                                            max # Finds the maximum
                                            permutations # Of all permutations
                                            [Z] $_ # Of the transposed input
                                            map # When mapped to
                                            .sum # The sum of
                                            *.map({.[$++]}) # The diagonal of the matrix





                                            share|improve this answer


























                                              2












                                              2








                                              2







                                              Perl 6, 50 49 bytes





                                              {max map *.map({.[$++]}).sum,permutations [Z] $_}


                                              Try it online!



                                              Decently short, even despite the long permutations call. This is an anonymous code block that takes a list of lists and returns a number.



                                              Explanation:



                                              {                                               } # Anonymous code block
                                              max # Finds the maximum
                                              permutations # Of all permutations
                                              [Z] $_ # Of the transposed input
                                              map # When mapped to
                                              .sum # The sum of
                                              *.map({.[$++]}) # The diagonal of the matrix





                                              share|improve this answer















                                              Perl 6, 50 49 bytes





                                              {max map *.map({.[$++]}).sum,permutations [Z] $_}


                                              Try it online!



                                              Decently short, even despite the long permutations call. This is an anonymous code block that takes a list of lists and returns a number.



                                              Explanation:



                                              {                                               } # Anonymous code block
                                              max # Finds the maximum
                                              permutations # Of all permutations
                                              [Z] $_ # Of the transposed input
                                              map # When mapped to
                                              .sum # The sum of
                                              *.map({.[$++]}) # The diagonal of the matrix






                                              share|improve this answer














                                              share|improve this answer



                                              share|improve this answer








                                              edited 2 days ago

























                                              answered 2 days ago









                                              Jo King

                                              20.6k246108




                                              20.6k246108























                                                  2















                                                  K (oK), 40, 32, 28, 19 bytes



                                                  -13 bytes thanks to ngn!



                                                  {|/+/(prm'x)@''!#x}


                                                  Try it online!



                                                  Initial solution:



                                                  {|/+/'x./:/:(*t),'/:t:{x~?x}#+!(#x)##*x}


                                                  Try it online!



                                                  Note: Doesn't work for the first test case [[1]]



                                                  Explanation:



                                                  { } - function with argument x



                                                                                     #     - creata a list
                                                  (#x) - with length number of rows of x
                                                  #*x - of the length of the first row
                                                  ! - odometer (ranged permutations)
                                                  + - transpose
                                                  # - filter out the rows
                                                  {x~?x} - that have duplicates
                                                  t: - save it to t
                                                  ,'/: - pair up each number in each row with
                                                  (*t) - a number from the first row
                                                  x./:/: - index x with each of the above
                                                  +/' - find the sum of each row
                                                  |/ - reduce by max





                                                  share|improve this answer



















                                                  • 1




                                                    hint: prm can be applied directly to a list to generate its permutations
                                                    – ngn
                                                    2 days ago










                                                  • @ngn Thanks! I wanted to use the main diagonal with =, but the result was longer. Is there flatten in oK?
                                                    – Galen Ivanov
                                                    2 days ago












                                                  • flatten in what sense?
                                                    – ngn
                                                    2 days ago










                                                  • @ngn (1 2 3; 4 5 6; 7 8 9) -> (1 2 3 4 5 6 7 8 9)
                                                    – Galen Ivanov
                                                    2 days ago






                                                  • 1




                                                    that's just ,/ or if you want it to go into deeper structures: ,//
                                                    – ngn
                                                    2 days ago
















                                                  2















                                                  K (oK), 40, 32, 28, 19 bytes



                                                  -13 bytes thanks to ngn!



                                                  {|/+/(prm'x)@''!#x}


                                                  Try it online!



                                                  Initial solution:



                                                  {|/+/'x./:/:(*t),'/:t:{x~?x}#+!(#x)##*x}


                                                  Try it online!



                                                  Note: Doesn't work for the first test case [[1]]



                                                  Explanation:



                                                  { } - function with argument x



                                                                                     #     - creata a list
                                                  (#x) - with length number of rows of x
                                                  #*x - of the length of the first row
                                                  ! - odometer (ranged permutations)
                                                  + - transpose
                                                  # - filter out the rows
                                                  {x~?x} - that have duplicates
                                                  t: - save it to t
                                                  ,'/: - pair up each number in each row with
                                                  (*t) - a number from the first row
                                                  x./:/: - index x with each of the above
                                                  +/' - find the sum of each row
                                                  |/ - reduce by max





                                                  share|improve this answer



















                                                  • 1




                                                    hint: prm can be applied directly to a list to generate its permutations
                                                    – ngn
                                                    2 days ago










                                                  • @ngn Thanks! I wanted to use the main diagonal with =, but the result was longer. Is there flatten in oK?
                                                    – Galen Ivanov
                                                    2 days ago












                                                  • flatten in what sense?
                                                    – ngn
                                                    2 days ago










                                                  • @ngn (1 2 3; 4 5 6; 7 8 9) -> (1 2 3 4 5 6 7 8 9)
                                                    – Galen Ivanov
                                                    2 days ago






                                                  • 1




                                                    that's just ,/ or if you want it to go into deeper structures: ,//
                                                    – ngn
                                                    2 days ago














                                                  2












                                                  2








                                                  2







                                                  K (oK), 40, 32, 28, 19 bytes



                                                  -13 bytes thanks to ngn!



                                                  {|/+/(prm'x)@''!#x}


                                                  Try it online!



                                                  Initial solution:



                                                  {|/+/'x./:/:(*t),'/:t:{x~?x}#+!(#x)##*x}


                                                  Try it online!



                                                  Note: Doesn't work for the first test case [[1]]



                                                  Explanation:



                                                  { } - function with argument x



                                                                                     #     - creata a list
                                                  (#x) - with length number of rows of x
                                                  #*x - of the length of the first row
                                                  ! - odometer (ranged permutations)
                                                  + - transpose
                                                  # - filter out the rows
                                                  {x~?x} - that have duplicates
                                                  t: - save it to t
                                                  ,'/: - pair up each number in each row with
                                                  (*t) - a number from the first row
                                                  x./:/: - index x with each of the above
                                                  +/' - find the sum of each row
                                                  |/ - reduce by max





                                                  share|improve this answer















                                                  K (oK), 40, 32, 28, 19 bytes



                                                  -13 bytes thanks to ngn!



                                                  {|/+/(prm'x)@''!#x}


                                                  Try it online!



                                                  Initial solution:



                                                  {|/+/'x./:/:(*t),'/:t:{x~?x}#+!(#x)##*x}


                                                  Try it online!



                                                  Note: Doesn't work for the first test case [[1]]



                                                  Explanation:



                                                  { } - function with argument x



                                                                                     #     - creata a list
                                                  (#x) - with length number of rows of x
                                                  #*x - of the length of the first row
                                                  ! - odometer (ranged permutations)
                                                  + - transpose
                                                  # - filter out the rows
                                                  {x~?x} - that have duplicates
                                                  t: - save it to t
                                                  ,'/: - pair up each number in each row with
                                                  (*t) - a number from the first row
                                                  x./:/: - index x with each of the above
                                                  +/' - find the sum of each row
                                                  |/ - reduce by max






                                                  share|improve this answer














                                                  share|improve this answer



                                                  share|improve this answer








                                                  edited 2 days ago

























                                                  answered Dec 17 at 13:49









                                                  Galen Ivanov

                                                  6,27711032




                                                  6,27711032








                                                  • 1




                                                    hint: prm can be applied directly to a list to generate its permutations
                                                    – ngn
                                                    2 days ago










                                                  • @ngn Thanks! I wanted to use the main diagonal with =, but the result was longer. Is there flatten in oK?
                                                    – Galen Ivanov
                                                    2 days ago












                                                  • flatten in what sense?
                                                    – ngn
                                                    2 days ago










                                                  • @ngn (1 2 3; 4 5 6; 7 8 9) -> (1 2 3 4 5 6 7 8 9)
                                                    – Galen Ivanov
                                                    2 days ago






                                                  • 1




                                                    that's just ,/ or if you want it to go into deeper structures: ,//
                                                    – ngn
                                                    2 days ago














                                                  • 1




                                                    hint: prm can be applied directly to a list to generate its permutations
                                                    – ngn
                                                    2 days ago










                                                  • @ngn Thanks! I wanted to use the main diagonal with =, but the result was longer. Is there flatten in oK?
                                                    – Galen Ivanov
                                                    2 days ago












                                                  • flatten in what sense?
                                                    – ngn
                                                    2 days ago










                                                  • @ngn (1 2 3; 4 5 6; 7 8 9) -> (1 2 3 4 5 6 7 8 9)
                                                    – Galen Ivanov
                                                    2 days ago






                                                  • 1




                                                    that's just ,/ or if you want it to go into deeper structures: ,//
                                                    – ngn
                                                    2 days ago








                                                  1




                                                  1




                                                  hint: prm can be applied directly to a list to generate its permutations
                                                  – ngn
                                                  2 days ago




                                                  hint: prm can be applied directly to a list to generate its permutations
                                                  – ngn
                                                  2 days ago












                                                  @ngn Thanks! I wanted to use the main diagonal with =, but the result was longer. Is there flatten in oK?
                                                  – Galen Ivanov
                                                  2 days ago






                                                  @ngn Thanks! I wanted to use the main diagonal with =, but the result was longer. Is there flatten in oK?
                                                  – Galen Ivanov
                                                  2 days ago














                                                  flatten in what sense?
                                                  – ngn
                                                  2 days ago




                                                  flatten in what sense?
                                                  – ngn
                                                  2 days ago












                                                  @ngn (1 2 3; 4 5 6; 7 8 9) -> (1 2 3 4 5 6 7 8 9)
                                                  – Galen Ivanov
                                                  2 days ago




                                                  @ngn (1 2 3; 4 5 6; 7 8 9) -> (1 2 3 4 5 6 7 8 9)
                                                  – Galen Ivanov
                                                  2 days ago




                                                  1




                                                  1




                                                  that's just ,/ or if you want it to go into deeper structures: ,//
                                                  – ngn
                                                  2 days ago




                                                  that's just ,/ or if you want it to go into deeper structures: ,//
                                                  – ngn
                                                  2 days ago











                                                  2















                                                  Haskell, 65 bytes





                                                  (%)
                                                  p%(h:t)=maximum[x+(i:p)%t|(i,x)<-zip[0..]h,all(/=i)p]
                                                  p%_=0


                                                  Try it online!





                                                  71 bytes





                                                  f m=maximum[sum b|(a,b)<-unzip<$>mapM(zip[0..])m,[x|x<-a,y<-a,x==y]==a]


                                                  Try it online!



                                                  The [x|x<-a,y<-a,x==y]==a checks that the elements of a are distinct. This uses up a surprising number of characters, but I didn't see a shorter way.






                                                  share|improve this answer


























                                                    2















                                                    Haskell, 65 bytes





                                                    (%)
                                                    p%(h:t)=maximum[x+(i:p)%t|(i,x)<-zip[0..]h,all(/=i)p]
                                                    p%_=0


                                                    Try it online!





                                                    71 bytes





                                                    f m=maximum[sum b|(a,b)<-unzip<$>mapM(zip[0..])m,[x|x<-a,y<-a,x==y]==a]


                                                    Try it online!



                                                    The [x|x<-a,y<-a,x==y]==a checks that the elements of a are distinct. This uses up a surprising number of characters, but I didn't see a shorter way.






                                                    share|improve this answer
























                                                      2












                                                      2








                                                      2







                                                      Haskell, 65 bytes





                                                      (%)
                                                      p%(h:t)=maximum[x+(i:p)%t|(i,x)<-zip[0..]h,all(/=i)p]
                                                      p%_=0


                                                      Try it online!





                                                      71 bytes





                                                      f m=maximum[sum b|(a,b)<-unzip<$>mapM(zip[0..])m,[x|x<-a,y<-a,x==y]==a]


                                                      Try it online!



                                                      The [x|x<-a,y<-a,x==y]==a checks that the elements of a are distinct. This uses up a surprising number of characters, but I didn't see a shorter way.






                                                      share|improve this answer













                                                      Haskell, 65 bytes





                                                      (%)
                                                      p%(h:t)=maximum[x+(i:p)%t|(i,x)<-zip[0..]h,all(/=i)p]
                                                      p%_=0


                                                      Try it online!





                                                      71 bytes





                                                      f m=maximum[sum b|(a,b)<-unzip<$>mapM(zip[0..])m,[x|x<-a,y<-a,x==y]==a]


                                                      Try it online!



                                                      The [x|x<-a,y<-a,x==y]==a checks that the elements of a are distinct. This uses up a surprising number of characters, but I didn't see a shorter way.







                                                      share|improve this answer












                                                      share|improve this answer



                                                      share|improve this answer










                                                      answered 2 days ago









                                                      xnor

                                                      89.7k18184439




                                                      89.7k18184439























                                                          1














                                                          Pyth, 15 12 bytes



                                                          eSms@VQd.plh


                                                          Try it online here.



                                                          eSms@VQd.plhQ   Implicit: Q=eval(input())
                                                          Trailing Q inferred
                                                          lhQ Length of first element of Q
                                                          .p Generate all permutaions of 0 to the above
                                                          m Map the elements of the above, as d, using:
                                                          @VQd Vectorised index into Q using d
                                                          For i in [0-length(Q)), yield Q[i][d[i]]
                                                          s Take the sum of the above
                                                          S Sort the result of the map
                                                          e Take the last element of the above, implicit print


                                                          Edit: saved 3 bytes courtesy of issacg






                                                          share|improve this answer



















                                                          • 1




                                                            .PUlhQl can be replaced by .plh. V implicitly ignores any extra entries.
                                                            – isaacg
                                                            Dec 18 at 1:06
















                                                          1














                                                          Pyth, 15 12 bytes



                                                          eSms@VQd.plh


                                                          Try it online here.



                                                          eSms@VQd.plhQ   Implicit: Q=eval(input())
                                                          Trailing Q inferred
                                                          lhQ Length of first element of Q
                                                          .p Generate all permutaions of 0 to the above
                                                          m Map the elements of the above, as d, using:
                                                          @VQd Vectorised index into Q using d
                                                          For i in [0-length(Q)), yield Q[i][d[i]]
                                                          s Take the sum of the above
                                                          S Sort the result of the map
                                                          e Take the last element of the above, implicit print


                                                          Edit: saved 3 bytes courtesy of issacg






                                                          share|improve this answer



















                                                          • 1




                                                            .PUlhQl can be replaced by .plh. V implicitly ignores any extra entries.
                                                            – isaacg
                                                            Dec 18 at 1:06














                                                          1












                                                          1








                                                          1






                                                          Pyth, 15 12 bytes



                                                          eSms@VQd.plh


                                                          Try it online here.



                                                          eSms@VQd.plhQ   Implicit: Q=eval(input())
                                                          Trailing Q inferred
                                                          lhQ Length of first element of Q
                                                          .p Generate all permutaions of 0 to the above
                                                          m Map the elements of the above, as d, using:
                                                          @VQd Vectorised index into Q using d
                                                          For i in [0-length(Q)), yield Q[i][d[i]]
                                                          s Take the sum of the above
                                                          S Sort the result of the map
                                                          e Take the last element of the above, implicit print


                                                          Edit: saved 3 bytes courtesy of issacg






                                                          share|improve this answer














                                                          Pyth, 15 12 bytes



                                                          eSms@VQd.plh


                                                          Try it online here.



                                                          eSms@VQd.plhQ   Implicit: Q=eval(input())
                                                          Trailing Q inferred
                                                          lhQ Length of first element of Q
                                                          .p Generate all permutaions of 0 to the above
                                                          m Map the elements of the above, as d, using:
                                                          @VQd Vectorised index into Q using d
                                                          For i in [0-length(Q)), yield Q[i][d[i]]
                                                          s Take the sum of the above
                                                          S Sort the result of the map
                                                          e Take the last element of the above, implicit print


                                                          Edit: saved 3 bytes courtesy of issacg







                                                          share|improve this answer














                                                          share|improve this answer



                                                          share|improve this answer








                                                          edited 2 days ago

























                                                          answered Dec 17 at 5:57









                                                          Sok

                                                          3,537722




                                                          3,537722








                                                          • 1




                                                            .PUlhQl can be replaced by .plh. V implicitly ignores any extra entries.
                                                            – isaacg
                                                            Dec 18 at 1:06














                                                          • 1




                                                            .PUlhQl can be replaced by .plh. V implicitly ignores any extra entries.
                                                            – isaacg
                                                            Dec 18 at 1:06








                                                          1




                                                          1




                                                          .PUlhQl can be replaced by .plh. V implicitly ignores any extra entries.
                                                          – isaacg
                                                          Dec 18 at 1:06




                                                          .PUlhQl can be replaced by .plh. V implicitly ignores any extra entries.
                                                          – isaacg
                                                          Dec 18 at 1:06











                                                          1















                                                          05AB1E, 18 13 bytes



                                                          нgLœε‚øε`è]OZ


                                                          I have the feeling it's overly long, but I'm not sure how to do vectorized indexing byte-efficiently in 05AB1E.. And I was indeed right that it was too long.. -5 bytes thanks to @Emigna.



                                                          Try it online or verify all test cases.



                                                          Explanation:





                                                          н                # Take the first inner list (of the implicit input list of lists)
                                                          g # Pop and take its length
                                                          L # Create a list in the range [1, inner-length]
                                                          œ # Create each possible permutation of this range-list
                                                          ε # Map each permutation to:
                                                          ‚ # Pair it with the (implicit) input
                                                          ø # Transpose; swap rows/columns
                                                          ε # Map each to:
                                                          ` # Push both to the stack
                                                          è # Index the permutation-nr into the inner list of the input
                                                          ] # Close both maps
                                                          O # Take the sum of each inner list
                                                          à # Pop and push the maximum (and output implicitly)


                                                          Example run:




                                                          • Input: [[1,4,2],[5,6,1]]

                                                          • After step 1 (нgL): [1,2,3]

                                                          • After step 2 (œ): [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]

                                                          • After step 3 (ε‚): [[[[1,4,2],[5,6,1]],[1,2,3]],[[[1,4,2],[5,6,1]],[1,3,2]],[[[1,4,2],[5,6,1]],[2,1,3]],[[[1,4,2],[5,6,1]],[2,3,1]],[[[1,4,2],[5,6,1]],[3,1,2]],[[[1,4,2],[5,6,1]],[3,2,1]]]

                                                          • After step 4 (ø): [[[[1,4,2],1],[[5,6,1],2]],[[[1,4,2],1],[[5,6,1],3]],[[[1,4,2],2],[[5,6,1],1]],[[[1,4,2],2],[[5,6,1],3]],[[[1,4,2],3],[[5,6,1],1]],[[[1,4,2],3],[[5,6,1],2]]]

                                                          • After step 5 (ε`è]): [[4,1],[4,5],[2,6],[2,5],[1,6],[1,1]] (NOTE: 05AB1E is 0-indexed (with automatic wraparound), so indexing 3 into [5,6,1] results in 5.)

                                                          • After step 6 (O): [5,9,8,7,7,2]

                                                          • Output / after step 7 (à): 9






                                                          share|improve this answer



















                                                          • 1




                                                            I had нgLœε‚øεè]OZ` for 13.
                                                            – Emigna
                                                            2 days ago










                                                          • @Emigna Thanks! It's surprisingly similar to what I had I see, except that I added a bunch of crap that was unnecessary. ;p
                                                            – Kevin Cruijssen
                                                            2 days ago
















                                                          1















                                                          05AB1E, 18 13 bytes



                                                          нgLœε‚øε`è]OZ


                                                          I have the feeling it's overly long, but I'm not sure how to do vectorized indexing byte-efficiently in 05AB1E.. And I was indeed right that it was too long.. -5 bytes thanks to @Emigna.



                                                          Try it online or verify all test cases.



                                                          Explanation:





                                                          н                # Take the first inner list (of the implicit input list of lists)
                                                          g # Pop and take its length
                                                          L # Create a list in the range [1, inner-length]
                                                          œ # Create each possible permutation of this range-list
                                                          ε # Map each permutation to:
                                                          ‚ # Pair it with the (implicit) input
                                                          ø # Transpose; swap rows/columns
                                                          ε # Map each to:
                                                          ` # Push both to the stack
                                                          è # Index the permutation-nr into the inner list of the input
                                                          ] # Close both maps
                                                          O # Take the sum of each inner list
                                                          à # Pop and push the maximum (and output implicitly)


                                                          Example run:




                                                          • Input: [[1,4,2],[5,6,1]]

                                                          • After step 1 (нgL): [1,2,3]

                                                          • After step 2 (œ): [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]

                                                          • After step 3 (ε‚): [[[[1,4,2],[5,6,1]],[1,2,3]],[[[1,4,2],[5,6,1]],[1,3,2]],[[[1,4,2],[5,6,1]],[2,1,3]],[[[1,4,2],[5,6,1]],[2,3,1]],[[[1,4,2],[5,6,1]],[3,1,2]],[[[1,4,2],[5,6,1]],[3,2,1]]]

                                                          • After step 4 (ø): [[[[1,4,2],1],[[5,6,1],2]],[[[1,4,2],1],[[5,6,1],3]],[[[1,4,2],2],[[5,6,1],1]],[[[1,4,2],2],[[5,6,1],3]],[[[1,4,2],3],[[5,6,1],1]],[[[1,4,2],3],[[5,6,1],2]]]

                                                          • After step 5 (ε`è]): [[4,1],[4,5],[2,6],[2,5],[1,6],[1,1]] (NOTE: 05AB1E is 0-indexed (with automatic wraparound), so indexing 3 into [5,6,1] results in 5.)

                                                          • After step 6 (O): [5,9,8,7,7,2]

                                                          • Output / after step 7 (à): 9






                                                          share|improve this answer



















                                                          • 1




                                                            I had нgLœε‚øεè]OZ` for 13.
                                                            – Emigna
                                                            2 days ago










                                                          • @Emigna Thanks! It's surprisingly similar to what I had I see, except that I added a bunch of crap that was unnecessary. ;p
                                                            – Kevin Cruijssen
                                                            2 days ago














                                                          1












                                                          1








                                                          1







                                                          05AB1E, 18 13 bytes



                                                          нgLœε‚øε`è]OZ


                                                          I have the feeling it's overly long, but I'm not sure how to do vectorized indexing byte-efficiently in 05AB1E.. And I was indeed right that it was too long.. -5 bytes thanks to @Emigna.



                                                          Try it online or verify all test cases.



                                                          Explanation:





                                                          н                # Take the first inner list (of the implicit input list of lists)
                                                          g # Pop and take its length
                                                          L # Create a list in the range [1, inner-length]
                                                          œ # Create each possible permutation of this range-list
                                                          ε # Map each permutation to:
                                                          ‚ # Pair it with the (implicit) input
                                                          ø # Transpose; swap rows/columns
                                                          ε # Map each to:
                                                          ` # Push both to the stack
                                                          è # Index the permutation-nr into the inner list of the input
                                                          ] # Close both maps
                                                          O # Take the sum of each inner list
                                                          à # Pop and push the maximum (and output implicitly)


                                                          Example run:




                                                          • Input: [[1,4,2],[5,6,1]]

                                                          • After step 1 (нgL): [1,2,3]

                                                          • After step 2 (œ): [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]

                                                          • After step 3 (ε‚): [[[[1,4,2],[5,6,1]],[1,2,3]],[[[1,4,2],[5,6,1]],[1,3,2]],[[[1,4,2],[5,6,1]],[2,1,3]],[[[1,4,2],[5,6,1]],[2,3,1]],[[[1,4,2],[5,6,1]],[3,1,2]],[[[1,4,2],[5,6,1]],[3,2,1]]]

                                                          • After step 4 (ø): [[[[1,4,2],1],[[5,6,1],2]],[[[1,4,2],1],[[5,6,1],3]],[[[1,4,2],2],[[5,6,1],1]],[[[1,4,2],2],[[5,6,1],3]],[[[1,4,2],3],[[5,6,1],1]],[[[1,4,2],3],[[5,6,1],2]]]

                                                          • After step 5 (ε`è]): [[4,1],[4,5],[2,6],[2,5],[1,6],[1,1]] (NOTE: 05AB1E is 0-indexed (with automatic wraparound), so indexing 3 into [5,6,1] results in 5.)

                                                          • After step 6 (O): [5,9,8,7,7,2]

                                                          • Output / after step 7 (à): 9






                                                          share|improve this answer















                                                          05AB1E, 18 13 bytes



                                                          нgLœε‚øε`è]OZ


                                                          I have the feeling it's overly long, but I'm not sure how to do vectorized indexing byte-efficiently in 05AB1E.. And I was indeed right that it was too long.. -5 bytes thanks to @Emigna.



                                                          Try it online or verify all test cases.



                                                          Explanation:





                                                          н                # Take the first inner list (of the implicit input list of lists)
                                                          g # Pop and take its length
                                                          L # Create a list in the range [1, inner-length]
                                                          œ # Create each possible permutation of this range-list
                                                          ε # Map each permutation to:
                                                          ‚ # Pair it with the (implicit) input
                                                          ø # Transpose; swap rows/columns
                                                          ε # Map each to:
                                                          ` # Push both to the stack
                                                          è # Index the permutation-nr into the inner list of the input
                                                          ] # Close both maps
                                                          O # Take the sum of each inner list
                                                          à # Pop and push the maximum (and output implicitly)


                                                          Example run:




                                                          • Input: [[1,4,2],[5,6,1]]

                                                          • After step 1 (нgL): [1,2,3]

                                                          • After step 2 (œ): [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]

                                                          • After step 3 (ε‚): [[[[1,4,2],[5,6,1]],[1,2,3]],[[[1,4,2],[5,6,1]],[1,3,2]],[[[1,4,2],[5,6,1]],[2,1,3]],[[[1,4,2],[5,6,1]],[2,3,1]],[[[1,4,2],[5,6,1]],[3,1,2]],[[[1,4,2],[5,6,1]],[3,2,1]]]

                                                          • After step 4 (ø): [[[[1,4,2],1],[[5,6,1],2]],[[[1,4,2],1],[[5,6,1],3]],[[[1,4,2],2],[[5,6,1],1]],[[[1,4,2],2],[[5,6,1],3]],[[[1,4,2],3],[[5,6,1],1]],[[[1,4,2],3],[[5,6,1],2]]]

                                                          • After step 5 (ε`è]): [[4,1],[4,5],[2,6],[2,5],[1,6],[1,1]] (NOTE: 05AB1E is 0-indexed (with automatic wraparound), so indexing 3 into [5,6,1] results in 5.)

                                                          • After step 6 (O): [5,9,8,7,7,2]

                                                          • Output / after step 7 (à): 9







                                                          share|improve this answer














                                                          share|improve this answer



                                                          share|improve this answer








                                                          edited 2 days ago

























                                                          answered Dec 17 at 11:28









                                                          Kevin Cruijssen

                                                          35.6k554186




                                                          35.6k554186








                                                          • 1




                                                            I had нgLœε‚øεè]OZ` for 13.
                                                            – Emigna
                                                            2 days ago










                                                          • @Emigna Thanks! It's surprisingly similar to what I had I see, except that I added a bunch of crap that was unnecessary. ;p
                                                            – Kevin Cruijssen
                                                            2 days ago














                                                          • 1




                                                            I had нgLœε‚øεè]OZ` for 13.
                                                            – Emigna
                                                            2 days ago










                                                          • @Emigna Thanks! It's surprisingly similar to what I had I see, except that I added a bunch of crap that was unnecessary. ;p
                                                            – Kevin Cruijssen
                                                            2 days ago








                                                          1




                                                          1




                                                          I had нgLœε‚øεè]OZ` for 13.
                                                          – Emigna
                                                          2 days ago




                                                          I had нgLœε‚øεè]OZ` for 13.
                                                          – Emigna
                                                          2 days ago












                                                          @Emigna Thanks! It's surprisingly similar to what I had I see, except that I added a bunch of crap that was unnecessary. ;p
                                                          – Kevin Cruijssen
                                                          2 days ago




                                                          @Emigna Thanks! It's surprisingly similar to what I had I see, except that I added a bunch of crap that was unnecessary. ;p
                                                          – Kevin Cruijssen
                                                          2 days ago











                                                          1














                                                          Haskell, 84 bytes



                                                          import Data.List
                                                          h l=maximum[sum$snd<$>r|r<-mapM id$zip[1..]<$>l,(==)=<<nub$fst<$>r]


                                                          Try it online!






                                                          share|improve this answer


























                                                            1














                                                            Haskell, 84 bytes



                                                            import Data.List
                                                            h l=maximum[sum$snd<$>r|r<-mapM id$zip[1..]<$>l,(==)=<<nub$fst<$>r]


                                                            Try it online!






                                                            share|improve this answer
























                                                              1












                                                              1








                                                              1






                                                              Haskell, 84 bytes



                                                              import Data.List
                                                              h l=maximum[sum$snd<$>r|r<-mapM id$zip[1..]<$>l,(==)=<<nub$fst<$>r]


                                                              Try it online!






                                                              share|improve this answer












                                                              Haskell, 84 bytes



                                                              import Data.List
                                                              h l=maximum[sum$snd<$>r|r<-mapM id$zip[1..]<$>l,(==)=<<nub$fst<$>r]


                                                              Try it online!







                                                              share|improve this answer












                                                              share|improve this answer



                                                              share|improve this answer










                                                              answered 2 days ago









                                                              nimi

                                                              31.2k31985




                                                              31.2k31985























                                                                  0















                                                                  Ruby, 74 72 69 bytes





                                                                  ->a{[*0...a[0].size].permutation.map{|x|a.zip(x).sum{|y,z|y[z]}}.max}


                                                                  Try it online!






                                                                  share|improve this answer




























                                                                    0















                                                                    Ruby, 74 72 69 bytes





                                                                    ->a{[*0...a[0].size].permutation.map{|x|a.zip(x).sum{|y,z|y[z]}}.max}


                                                                    Try it online!






                                                                    share|improve this answer


























                                                                      0












                                                                      0








                                                                      0







                                                                      Ruby, 74 72 69 bytes





                                                                      ->a{[*0...a[0].size].permutation.map{|x|a.zip(x).sum{|y,z|y[z]}}.max}


                                                                      Try it online!






                                                                      share|improve this answer















                                                                      Ruby, 74 72 69 bytes





                                                                      ->a{[*0...a[0].size].permutation.map{|x|a.zip(x).sum{|y,z|y[z]}}.max}


                                                                      Try it online!







                                                                      share|improve this answer














                                                                      share|improve this answer



                                                                      share|improve this answer








                                                                      edited Dec 17 at 11:24

























                                                                      answered Dec 17 at 11:11









                                                                      Kirill L.

                                                                      3,5851318




                                                                      3,5851318























                                                                          0















                                                                          05AB1E, 7 bytes



                                                                          øœ€ÅOà


                                                                          Port of @ais523's Jelly CW answer, so make sure to upvote it as well!



                                                                          Try it online or verify all test cases.



                                                                          Explanation:





                                                                          ø          # Transpose the (implicit) input; swapping row/columns
                                                                          œ # Get all permutations
                                                                          ہ # Take the main diagonal of each
                                                                          O # Sum each
                                                                          à # Pop and push the maximum (which is output implicitly)





                                                                          share|improve this answer


























                                                                            0















                                                                            05AB1E, 7 bytes



                                                                            øœ€ÅOà


                                                                            Port of @ais523's Jelly CW answer, so make sure to upvote it as well!



                                                                            Try it online or verify all test cases.



                                                                            Explanation:





                                                                            ø          # Transpose the (implicit) input; swapping row/columns
                                                                            œ # Get all permutations
                                                                            ہ # Take the main diagonal of each
                                                                            O # Sum each
                                                                            à # Pop and push the maximum (which is output implicitly)





                                                                            share|improve this answer
























                                                                              0












                                                                              0








                                                                              0







                                                                              05AB1E, 7 bytes



                                                                              øœ€ÅOà


                                                                              Port of @ais523's Jelly CW answer, so make sure to upvote it as well!



                                                                              Try it online or verify all test cases.



                                                                              Explanation:





                                                                              ø          # Transpose the (implicit) input; swapping row/columns
                                                                              œ # Get all permutations
                                                                              ہ # Take the main diagonal of each
                                                                              O # Sum each
                                                                              à # Pop and push the maximum (which is output implicitly)





                                                                              share|improve this answer













                                                                              05AB1E, 7 bytes



                                                                              øœ€ÅOà


                                                                              Port of @ais523's Jelly CW answer, so make sure to upvote it as well!



                                                                              Try it online or verify all test cases.



                                                                              Explanation:





                                                                              ø          # Transpose the (implicit) input; swapping row/columns
                                                                              œ # Get all permutations
                                                                              ہ # Take the main diagonal of each
                                                                              O # Sum each
                                                                              à # Pop and push the maximum (which is output implicitly)






                                                                              share|improve this answer












                                                                              share|improve this answer



                                                                              share|improve this answer










                                                                              answered 2 days ago









                                                                              Kevin Cruijssen

                                                                              35.6k554186




                                                                              35.6k554186























                                                                                  0















                                                                                  C# (.NET Core), 112 bytes





                                                                                  n=>Enumerable.Range(0,n[0].Count).Select(a=>n.Select(p=>p[a])).Aggregate(0,(k,l)=>k+l.Aggregate((q,w)=>w>q?w:q))


                                                                                  Try it online!



                                                                                  Inverts the rows and columns of the 2d list, then finds the largest number in each of the columns and adds them together.






                                                                                  share|improve this answer





















                                                                                  • This doesn't work for the third test case. You answer computes 5+6+2, but the right answer is 5+4.
                                                                                    – Dennis
                                                                                    23 hours ago
















                                                                                  0















                                                                                  C# (.NET Core), 112 bytes





                                                                                  n=>Enumerable.Range(0,n[0].Count).Select(a=>n.Select(p=>p[a])).Aggregate(0,(k,l)=>k+l.Aggregate((q,w)=>w>q?w:q))


                                                                                  Try it online!



                                                                                  Inverts the rows and columns of the 2d list, then finds the largest number in each of the columns and adds them together.






                                                                                  share|improve this answer





















                                                                                  • This doesn't work for the third test case. You answer computes 5+6+2, but the right answer is 5+4.
                                                                                    – Dennis
                                                                                    23 hours ago














                                                                                  0












                                                                                  0








                                                                                  0







                                                                                  C# (.NET Core), 112 bytes





                                                                                  n=>Enumerable.Range(0,n[0].Count).Select(a=>n.Select(p=>p[a])).Aggregate(0,(k,l)=>k+l.Aggregate((q,w)=>w>q?w:q))


                                                                                  Try it online!



                                                                                  Inverts the rows and columns of the 2d list, then finds the largest number in each of the columns and adds them together.






                                                                                  share|improve this answer













                                                                                  C# (.NET Core), 112 bytes





                                                                                  n=>Enumerable.Range(0,n[0].Count).Select(a=>n.Select(p=>p[a])).Aggregate(0,(k,l)=>k+l.Aggregate((q,w)=>w>q?w:q))


                                                                                  Try it online!



                                                                                  Inverts the rows and columns of the 2d list, then finds the largest number in each of the columns and adds them together.







                                                                                  share|improve this answer












                                                                                  share|improve this answer



                                                                                  share|improve this answer










                                                                                  answered 23 hours ago









                                                                                  Embodiment of Ignorance

                                                                                  2289




                                                                                  2289












                                                                                  • This doesn't work for the third test case. You answer computes 5+6+2, but the right answer is 5+4.
                                                                                    – Dennis
                                                                                    23 hours ago


















                                                                                  • This doesn't work for the third test case. You answer computes 5+6+2, but the right answer is 5+4.
                                                                                    – Dennis
                                                                                    23 hours ago
















                                                                                  This doesn't work for the third test case. You answer computes 5+6+2, but the right answer is 5+4.
                                                                                  – Dennis
                                                                                  23 hours ago




                                                                                  This doesn't work for the third test case. You answer computes 5+6+2, but the right answer is 5+4.
                                                                                  – Dennis
                                                                                  23 hours ago


















                                                                                  draft saved

                                                                                  draft discarded




















































                                                                                  If this is an answer to a challenge…




                                                                                  • …Be sure to follow the challenge specification. However, please refrain from exploiting obvious loopholes. Answers abusing any of the standard loopholes are considered invalid. If you think a specification is unclear or underspecified, comment on the question instead.


                                                                                  • …Try to optimize your score. For instance, answers to code-golf challenges should attempt to be as short as possible. You can always include a readable version of the code in addition to the competitive one.
                                                                                    Explanations of your answer make it more interesting to read and are very much encouraged.


                                                                                  • …Include a short header which indicates the language(s) of your code and its score, as defined by the challenge.



                                                                                  More generally…




                                                                                  • …Please make sure to answer the question and provide sufficient detail.


                                                                                  • …Avoid asking for help, clarification or responding to other answers (use comments instead).






                                                                                  Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                                                                                  Please pay close attention to the following guidance:


                                                                                  • Please be sure to answer the question. Provide details and share your research!

                                                                                  But avoid



                                                                                  • Asking for help, clarification, or responding to other answers.

                                                                                  • Making statements based on opinion; back them up with references or personal experience.


                                                                                  To learn more, see our tips on writing great answers.




                                                                                  draft saved


                                                                                  draft discarded














                                                                                  StackExchange.ready(
                                                                                  function () {
                                                                                  StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodegolf.stackexchange.com%2fquestions%2f177673%2fnon-overlapping-matrix-sum%23new-answer', 'question_page');
                                                                                  }
                                                                                  );

                                                                                  Post as a guest















                                                                                  Required, but never shown





















































                                                                                  Required, but never shown














                                                                                  Required, but never shown












                                                                                  Required, but never shown







                                                                                  Required, but never shown

































                                                                                  Required, but never shown














                                                                                  Required, but never shown












                                                                                  Required, but never shown







                                                                                  Required, but never shown







                                                                                  Popular posts from this blog

                                                                                  If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                                                                                  Alcedinidae

                                                                                  Can an atomic nucleus contain both particles and antiparticles? [duplicate]