Divisione Divisori Divisivi


17

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

K1|K2 , K2|K3 , ... , Km-1|Km.
un'|BBun'n>1Kio2n=1 non abbiamo un tale fattore e quindi otteniamo una tupla vuota.

Nel caso in cui tu sia curioso di sapere da dove provenga: questa decomposizione è nota come scomposizione dei fattori invarianti nella teoria dei numeri ed è usata nella classificazione dei gruppi abeliani finiti.

Sfida

Dato output tutte queste tuple per il dato esattamente una volta, nell'ordine che preferisci. Sono consentiti i formati di output della standard .n(K1,K2,...,Km)n

Esempi

  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)

Correlati: http://oeis.org/A000688 , Elenca tutte le partizioni moltiplicative di n


Possiamo generare ciascuna tupla in ordine inverso? (es. 12,3,3)
Arnauld

1
@Arnauld Sì, penso che fintanto che è in ordine crescente o decrescente dovrebbe essere ok!
flawr

Possiamo limitare l'input a numeri interi> = 2? In caso contrario, ciò invaliderebbe alcune delle risposte esistenti?
Nick Kennedy,

1
No, le specifiche dicono chiaramente che qualsiasi numero intero positivo può essere fornito come input che include . Se lo cambio ora tutti coloro che aderiscono effettivamente alle specifiche dovrebbero cambiare la loro risposta. n=1
flawr

Risposte:



3

05AB1E , 13 byte

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

Provalo 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)

Bel modo di usare Òœ€.œPper ottenere le liste. Ho davvero avuto difficoltà a trovare qualcosa di più corto .. Se solo ci fosse un builtin simile a Åœma per prodotto anziché somma. ;)
Kevin Cruijssen,

Non riesce per n = 1 (vedi commenti sulla domanda)
Nick Kennedy,


2

JavaScript (V8) ,  73  70 byte

(Km,Km-1,...,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)

Provalo online!

Commentate

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

1

05AB1E , 17 15 14 byte

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

Molto lento per casi di test più grandi.

-1 byte grazie a @Grimy .

Provalo online.

Spiegazione:

Ñ               # 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)

n=8

1
13 e più veloce . Sembra che possa essere ancora più breve.
Grimmy,

1

JavaScript, 115 byte

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]}

Scriverò una spiegazione più tardi



0

Japt , 22 byte

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

Provalo

â Åï 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
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.