Calcola il numero di matrici con le somme appropriate


12

Quando si moltiplicano i monomi nella base di Milnor per l'algebra di Steenrod, parte dell'algoritmo prevede l'enumerazione di determinate "matrici consentite".

Dato due elenchi di numeri interi non negativi r 1 , ..., r m e s 1 , ..., s n , una matrice di numeri interi non negativo X

una matrice

è ammesso se

  1. La somma della jth colonna è minore o uguale a s j :

    la colonna somma il vincolo

  2. La somma dell'ottava riga ponderata per potenze di 2 è inferiore o uguale a r i :

    vincolo somma somme di riga

Compito

Scrivere un programma che prende una coppia di liste r 1 , ..., r m ed s 1 , s 1 , ..., s n e calcola il numero di matrici permesse per queste liste. Il tuo programma può facoltativamente prendere m e n come argomenti aggiuntivi se necessario.

  • Questi numeri possono essere inseriti in qualsiasi formato uno preferisca, ad esempio raggruppati in elenchi o codificati in unario o qualsiasi altra cosa.

  • L'output dovrebbe essere un numero intero positivo

  • Si applicano scappatoie standard.

punteggio

Questo è il codice golf: vince la soluzione più breve in byte.

Esempi:

Per [2]e [1], ci sono due matrici consentite:

Esempio 1

Per [4]e [1,1]ci sono tre matrici consentite:

esempio 2

Per [2,4]e [1,1]ci sono cinque matrici consentite:

esempio 3

Casi test:

   Input: [1], [2]
   Output: 1

   Input: [2], [1]
   Output: 2

   Input: [4], [1,1]
   Output: 3

   Input: [2,4], [1,1]   
   Output: 5      

   Input: [3,5,7], [1,2]
   Output: 14

   Input: [7, 10], [1, 1, 1]
   Output: 15       

   Input: [3, 6, 16, 33], [0, 1, 1, 1, 1]
   Output: 38      

   Input: [7, 8], [3, 3, 1]
   Output: 44

   Input: [2, 6, 15, 18], [1, 1, 1, 1, 1]
   Output: 90       

   Input: [2, 6, 7, 16], [1, 3, 2]
   Output: 128

   Input: [2, 7, 16], [3, 3, 1, 1]
   Output: 175

1
IMO la definizione sarebbe più facile da capire se perdi la prima riga e colonna delle matrici, indicizzi da 1 e usi <= anziché ==.
Peter Taylor,

Va bene, lo farà. Ho appena copiato la definizione da un libro di testo di matematica e aveva un reale utilizzo per quelle voci.
Hood

Risposte:


3

JavaScript (ES7), 163 byte

f=([R,...x],s)=>1/R?[...Array(R**s.length)].reduce((k,_,n)=>(a=s.map((_,i)=>n/R**i%R|0)).some(c=>(p+=c<<++j)>R,p=j=0)?k:k+f(x,s.map((v,i)=>v-a[i])),0):!/-/.test(s)

Casi test

NB : ho rimosso i due casi di test più dispendiosi in termini di tempo da questo frammento, ma dovrebbero anche passare.

Commentate

f = (                               // f = recursive function taking:
  [R,                               //   - the input array r[] splitted into:
      ...x],                        //     R = next element / x = remaining elements
  s                                 //   - the input array s[]
) =>                                //
  1 / R ?                           // if R is defined:
    [...Array(R**s.length)]         //   for each n in [0, ..., R**s.length - 1],
    .reduce((k, _, n) =>            //   using k as an accumulator:
      (a =                          //     build the next combination a[] of
        s.map((_, i) =>             //     N elements in [0, ..., R - 1]
          n / R**i % R | 0          //     where N is the length of s[]
        )                           //
      ).some(c =>                   //     for each element c in a[]:
        (p += c << ++j)             //       increment j; add c * (2**j) to p
        > R,                        //       exit with a truthy value if p > R
        p = j = 0                   //       start with p = j = 0
      ) ?                           //     end of some(); if truthy:
        k                           //       just return k unchanged
      :                             //     else:
        k +                         //       add to k the result of
        f(                          //       a recursive call to f() with:
          x,                        //         the remaining elements of r[]
          s.map((v, i) => v - a[i]) //         s[] updated by subtracting the values of a[]
        ),                          //       end of recursive call
      0                             //     initial value of the accumulator k
    )                               //   end of reduce()
  :                                 // else:
    !/-/.test(s)                    //   return true if there's no negative value in s[]

1

Gelatina , 26 byte

UḄ€Ḥ>⁴
0rŒpṗ⁴L¤µS>³;ÇẸµÐḟL

Un programma completo che prende S , R che stampa il conteggio

Provalo online!

Come?

UḄ€Ḥ>⁴ - Link 1, row-wise comparisons: list of lists, M
U      - upend (reverse each)
 Ḅ€    - convert €ach from binary (note bit-domain is unrestricted, e.g. [3,4,5] -> 12+8+5)
   Ḥ   - double (vectorises) (equivalent to the required pre-bit-shift by one)
     ⁴ - program's 2nd input, R
    >  - greater than? (vectorises)

0rŒpṗ⁴L¤µS>³;ÇẸµÐḟL - Main link: list S, list R
0r                  - inclusive range from 0 to s for s in S
  Œp                - Cartesian product of those lists
       ¤            - nilad followed by link(s) as a nilad:
     ⁴              -   program's 2nd input, R
      L             -   length
    ṗ               - Cartesian power = all M with len(R) rows & column values in [0,s]
        µ      µÐḟ  - filter discard if:
         S          -   sum (vectorises) = column sums
           ³        -   program's 1st input, S
          >         -   greater than? (vectorises) = column sum > s for s in S
             Ç      -   call the last link (1) as a monad = sum(2^j × row) > r for r in R
            ;       -   concatenate
              Ẹ     -   any truthy?
                  L - length

1

Wolfram Language (Mathematica) , 101 byte

Lascia che Mathematica lo risolva come un sistema di disuguaglianze sugli interi. Ho impostato un array simbolico fe ho inserito tre serie di disuguaglianze. Join@@appiattisce l'elenco per Solve.

Length@Solve[Join@@Thread/@{Tr/@(t=f~Array~{q=(l=Length)@#2,l@#})<=#2,2^Range@q.t<=#,t>=0},Integers]&

Provalo online!


0

Mathematica 139 byte

Tr@Boole[k=Length[a=#]+1;AllTrue[a-Rest[##+0],#>=0&]&@@@Tuples[BinCounts[#,{2r~Prepend~0}]&/@IntegerPartitions[#,All,r=2^Range@k/2]&/@#2]]&

Provalo online

Spiegazione: partizioni ciascuna delle r i in potenze di 2 e quindi fa tutte le tuple con una scomposizione in potenze di due per ogni intero, sottrarre i totali delle colonne dalla lista del s i . Conta il numero di tuple che rendono tutte le voci rimanenti positive.


2
in genere è scoraggiato rispondere alla propria sfida fino a quando altri non si saranno già presentati in quella lingua.
HyperNeutrino,

@HyperNeutrino Posso eliminarlo se pensi che sia una buona idea. Questo non è un golf molto attento, quindi è molto probabile che altri possano fare di meglio.
Hood

3
Anche se non è male poter dimostrare che è risolvibile, non consiglio di rovinare la soluzione così rapidamente. Forse aspetta una settimana prima o qualcosa del genere.
Erik the Outgolfer,

Quindi dovrei eliminarlo o lasciarlo ora che l'ho pubblicato?
Hood

Lo lascerei. Pace Erik Non penso che rovini nulla: l'esistenza di una soluzione è evidente dal fatto che le matrici che rispettano il vincolo della somma delle colonne sono finite e facilmente generate.
Peter Taylor,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.