Dividindo divisores divisivos

17

n(k1,k2,...,km)ki2k1k2...km=n

k1|k2 , k2|k3 ,  , km1|km.
a|bban>1ki2n=1 não temos esse fator e, portanto, obtemos uma tupla vazia.

Caso você esteja curioso de onde isso vem: Essa decomposição é conhecida como decomposição de fatores invariantes na teoria dos números e é usada na classificação de grupos abelianos finitamente gerados.

Desafio

Dada n saída de todas essas tuplas (k1,k2,...,km) para o dado n exatamente uma vez, em qualquer ordem que desejar. Os formatos de saída de padrão são permitidos.

Exemplos

  1: () (empty tuple)
  2: (2)
  3: (3)
  4: (2,2), (4)
  5: (5)
  6: (6)
  7: (7)
  8: (2,2,2), (2,4), (8)
  9: (3,3), (9)
 10: (10)
 11: (11)
 12: (2,6), (12)
108: (2,54), (3,3,12), (3,6,6), (3,36), (6,18), (108)

Relacionado: http://oeis.org/A000688 , liste todas as partições multiplicativas de n

flawr
fonte
Podemos produzir cada tupla em ordem inversa? (por exemplo 12,3,3)
Arnauld
1
@ Arnauld Sim, acho que, desde que seja classificado em ordem crescente ou decrescente, deve estar ok!
flawr 9/09
Podemos limitar a entrada para números inteiros> = 2? Caso contrário, isso invalidaria algumas das respostas existentes?
Nick Kennedy,
1
Não, as especificações dizem claramente que qualquer número inteiro positivo pode ser dado como entrada, que inclui . Se eu mudar agora, todo mundo que realmente aderir às especificações teria que mudar sua resposta. n=1
flawr 9/09

Respostas:

3

05AB1E , 13 bytes

Òœ€.œP€`êʒüÖP

Experimente online!

Ò                      # prime factorization of the input
 œ€.œ                  # all partitions
     P                 # product of each sublist
      €`               # flatten
        ê              # sorted uniquified
         ʒ             # filter by:
          üÖ           #  pairwise divisible-by (yields list of 0s or 1s)
            P          #  product (will be 1 iff the list is all 1s)
Grimmy
fonte
Ótima maneira de usar Òœ€.œPpara obter os sublistas. Na verdade, também tive problemas para encontrar algo mais curto. Se ao menos houvesse um componente semelhante ao Åœproduto, em vez da soma. ;)
Kevin Cruijssen
Falha para n = 1 (ver comentários na pergunta)
Nick Kennedy,
2

JavaScript (V8) ,  73  70 bytes

Imprime as tuplas em ordem decrescente .(km,km1,...,k1)

f=(n,d=2,a=[])=>n>1?d>n||f(n,d+1,a,d%a[0]||f(n/d,d,[d,...a])):print(a)

Experimente online!

Comentado

f = (             // f is a recursive function taking:
  n,              //   n   = input
  d = 2,          //   d   = current divisor
  a = []          //   a[] = list of divisors
) =>              //
  n > 1 ?         // if n is greater than 1:
    d > n ||      //   unless d is greater than n,
    f(            //   do a recursive call with:
      n,          //     -> n unchanged
      d + 1,      //     -> d + 1
      a,          //     -> a[] unchanged
      d % a[0] || //     unless the previous divisor does not divide the current one,
      f(          //     do another recursive call with:
        n / d,    //       -> n / d
        d,        //       -> d unchanged
        [d, ...a] //       -> d preprended to a[]
      )           //     end of inner recursive call
    )             //   end of outer recursive call
  :               // else:
    print(a)      //   this is a valid list of divisors: print it
Arnauld
fonte
1

05AB1E , 17 15 14 bytes

ѦIиæʒPQ}êʒüÖP

Muito lento para casos de teste maiores.

-1 byte graças a @Grimy .

Experimente online.

Explicação:

Ñ               # Get all divisors of the (implicit) input-integer
 ¦              # Remove the first value (the 1)
  Iи            # Repeat this list (flattened) the input amount of times
                #  i.e. with input 4 we now have [2,4,2,4,2,4,2,4]
    æ           # Take the powerset of this list
     ʒ  }       # Filter it by:
      PQ        #  Where the product is equal to the (implicit) input
         ê      # Then sort and uniquify the filtered lists
          ʒ     # And filter it further by:
           ü    #  Loop over each overlapping pair of values
            Ö   #   And check if the first value is divisible by the second value
             P  #  Check if this is truthy for all pairs

                # (after which the result is output implicitly)
Kevin Cruijssen
fonte
@ Grimy Obrigado. E bom apelo aos divisores. Ainda é muito lento para , mas todos os bits ajudam, e se não custar bytes adicionais para melhorar o desempenho, por que não usá-lo? :)n=8
Kevin Cruijssen 9/09
1
13 e mais rápido . Parece que pode ser mais curto ainda.
Grimmy 9/09
1

JavaScript, 115 bytes

f=(n,a=[],i=1)=>{for(;i++<n;)n%i||(a=a.concat(f(n/i).filter(e=>!(e[0]%i)).map(e=>[i].concat(e))));return n>1?a:[a]}

Vou escrever uma explicação mais tarde

Naruyoko
fonte
0

Japonês , 22 bytes

â Åï c à f@¥XשXäv eÃâ

Tente

â Åï c à f@¥XשXäv eÃâ     :Implicit input of integer U
â                          :Divisors
  Å                        :Slice off the first element, removing the 1
   ï                       :Cartesian product
     c                     :Flatten
       à                   :Combinations
         f                 :Filter by
          @                :Passing each sub-array X through the following function
           ¥               :  Test U for equality with
            X×             :  X reduced by multiplication
              ©            :  Logical AND with
               Xä          :  Consecutive pairs of X
                 v         :  Reduced by divisibility
                   e       :  All truthy?
                    Ã      :End filter
                     â     :Deduplicate
Shaggy
fonte