Questa è la matrice di Pascal?


25

Nel triangolo di Pascal ogni numero è la somma dei due numeri direttamente sopra di esso, trattando i punti vuoti come zero:

Fonte: https://en.wikipedia.org/wiki/File:Pascal_triangle_small.png

Ruotando il triangolo, possiamo ritagliare matrici quadrate di varie dimensioni e rotazioni che chiamerò matrici di Pascal . Nota che quelle matrici devono sempre contenere il primo . Ecco alcuni esempi:1

1  1  1  1
1  2  3  4
1  3  6 10
1  4 10 20

6  3  1
3  2  1
1  1  1

1  5 15 35 70
1  4 10 20 35
1  3  6 10 15
1  2  3  4  5
1  1  1  1  1

1

1  1
2  1

L'obiettivo

Data una matrice quadrata contenente numeri positivi in ​​qualsiasi formato ragionevole, decidi se è una matrice di Pascal .

Decidere significa restituire i valori di verità o falsa a seconda che l'input sia una matrice di Pascal , oppure fissare due valori costanti e restituire uno per gli input veri e l'altro per gli input falsi.

Questo è , quindi cerca di usare il minor numero di byte possibile nella lingua che preferisci. Vince il codice più corto in ogni lingua , quindi non accetterò una risposta.

Casi test

Vero

[[1, 1, 1, 1], [1, 2, 3, 4], [1, 3, 6, 10], [1, 4, 10, 20]]
[[6, 3, 1], [3, 2, 1], [1, 1, 1]]
[[1, 5, 15, 35, 70], [1, 4, 10, 20, 35], [1, 3, 6, 10, 15], [1, 2, 3, 4, 5], [1, 1, 1, 1, 1]]
[[1]]
[[1, 1], [2, 1]]

falso

[[2]]
[[1, 2], [2, 1]]
[[1, 1], [3, 1]]
[[1, 1, 1, 1], [1, 2, 3, 4], [1, 4, 6, 10], [1, 4, 10, 20]]
[[6, 3, 1], [1, 1, 1], [3, 2, 1]]
[[2, 2, 2, 2], [2, 4, 6, 8], [2, 6, 12, 20], [2, 8, 20, 40]]
[[40, 20, 8, 2], [20, 12, 6, 2], [8, 6, 4, 2], [2, 2, 2, 2]] 
[[1, 5, 15, 34, 70], [1, 4, 10, 20, 34], [1, 3, 6, 10, 15], [1, 2, 3, 4, 5], [1, 1, 1, 1, 1]]

Banco di prova consigliato: [[40, 20, 8, 2], [20, 12, 6, 2], [8, 6, 4, 2], [2, 2, 2, 2]]. La mia risposta iniziale era erroneamente veritiera per questo, ma corretta per tutti gli attuali casi di test.
Kevin Cruijssen il

@KevinCruijssen Grazie, aggiunto.
Laikoni

Risposte:


6

Brachylog , 28 24 23 byte

Sembra abbastanza lungo ma eccolo qui

  • -4 byte grazie a DLosc comprimendo i flip opzionali
  • -1 byte grazie ancora a DLosc eseguendo le somme parziali in 1 volta

{|↔}\↰₁{k{a₀ᶠ+ᵐ}ᵐ⊆?h=₁}

Spiegazione

{|↔}\↰₁{k{a₀ᶠ+ᵐ}ᵐ⊆?h=₁}       # Tests if this is a pascal matrix:
{|↔}\↰₁                       #     By trying to get a rows of 1's on top
{|↔}                          #       Through optionally mirroring vertically
     \                        #       Transposing
      ↰₁                      #       Through optionally mirroring vertically

       {k{a₀ᶠ+ᵐ}ᵐ⊆?h=₁}       #     and checking the following
                  ?h=₁        #        first row is a rows of 1's
        k{     }ᵐ             #        and for each row except the last
          a₀ᶠ+ᵐ               #          calculate the partial sum by
          a₀ᶠ                 #             take all prefixes of the input
             +ᵐ               #             and sum each
               ⊆?             #        => as a list is a subsequence of the rotated input

Provalo online!


4

JavaScript (ES6), 114 byte

m=>[m,m,m=m.map(r=>[...r].reverse()),m].some(m=>m.reverse(p=[1]).every(r=>p=!r.some((v,x)=>v-~~p[x]-~~r[x-1])&&r))

Provalo online!


4

MATL , 17 byte

4:"Gas2YLG@X!X=va

Provalo online! Oppure verifica tutti i casi di test .

Output 1per matrici Pascal, 0altrimenti.

Spiegazione

4:      % Push [1 2 3 4]
"       % For each
  G     %   Push input: N×N
  a     %   1×N vector containing 1 for matrix columns that have at least a nonzero
        %   entry, and 0 otherwise. So it gives a vector containing 1 in all entries
  s     %   Sum. Gives N
  2YL   %   Pascal matrix of that size
  G     %   Push input
  @     %   Push current iteration index
  X!    %   Rotate the matrix that many times in steps of 90 degress
  X=    %   Are they equal?
  v     %   Concatenate with previous accumulated result
  a     %   Gives 1 if at least one entry of the vector is nonzero
        % End (implicit). Display (implicit)

2

R , 104 byte

function(m,R=row(m)-1,y=nrow(m):1,Z=choose(R+t(R),R))any(sapply(list(Z,Z[,y],Z[y,y],Z[y,]),identical,m))

Provalo online!

Cattiva...

Crea una matrice canonica di Pascal Zcon dimensioni pari a quella di m, quindi verifica se la matrice di ingresso mè identicala anydelle rotazioni Z.


2

Carbone , 41 byte

F‹¹⌈§θ⁰≔⮌θθF‹¹⌈Eθ§ι⁰≦⮌θ⌊⭆θ⭆ι⁼λ∨¬κΣ…§θ⊖κ⊕μ

Provalo online! Il collegamento è alla versione dettagliata del codice. Spiegazione:

F‹¹⌈§θ⁰

Se il massimo della prima riga è maggiore di 1,

≔⮌θθ

quindi capovolgere l'array di input.

F‹¹⌈Eθ§ι⁰

Se il massimo della sua prima colonna è maggiore di 1,

≦⮌θ

quindi rispecchiare l'array di input.

⌊⭆θ⭆ι

Scorri gli elementi dell'array di input e stampa il risultato minimo (ovvero il logico E di tutti i risultati),

⁼λ∨¬κΣ…§θ⊖κ⊕μ

confrontando ogni valore con 1 se è nella prima riga, altrimenti la somma della riga sopra fino alla cella sopra inclusa.


1

Python 2 , 129 byte

f=lambda M,i=4:i and(set(M[0])=={1}and all(a+b==c for x,y in zip(M,M[1:])for a,b,c in zip(x[1:],y,y[1:]))or f(zip(*M[::-1]),i-1))

Provalo online!

Restituisce Trueif Mis a Pascal's Matrix, altrimenti 0.


1

05AB1E , 29 byte

¬P≠iR}DøнP≠ií}¬PΘsü)ε`sηOQ}P*

Provalo online o verifica tutti i casi di test .

Spiegazione:

¬Pi }        # If the product of the first row of the (implicit) input-matrix is NOT 1:
    R         #  Reverse the order of the rows
D             # Duplicate the resulting matrix
 øнPi }      # If the product of the first column is NOT 1:
      í       #  Reverse each row individually
¬PΘ           # Check if the product of the first row is exactly 1
           *  # AND
          P   # And check if everything after the following map is truthy:
sü)ε     }    #  Map over each pair of rows:
    `sη       #   Get the prefixes of the first row
       O      #   Sum each prefix
        Q     #   And check if it's equal to the second row
              # (and output the result implicitly)

1

Kotlin , 269 byte

{m:List<List<Int>>->val n=m.size
var r=0
var c=0
fun f()=if(m[0][0]!=1)m[n-r-1][n-c-1]
else if(m[n-1][0]!=1)m[r][n-c-1]
else if(m[0][n-1]!=1)m[n-r-1][c]
else m[r][c]
var g=0<1
for(l in 0..n*2-2){r=l
c=0
var v=1
do{if(r<n&&c<n)g=f()==v&&g
v=v*(l-c)/++c}while(--r>=0)}
g}

Provalo online!



1

Java (JDK) , 234 byte

m->{int l=m.length,L=l-1,p=1,s=0,S=0,e=l,E=l,d=1,D=1,i,j;if(m[0][0]>1|m[0][L]>1){s=L;e=d=-1;}if(m[0][0]>1|m[L][0]>1){S=L;E=D=-1;}for(i=s;i!=e;i+=d)for(j=S;j!=E;j+=D)p=(i==s|j==S?m[i][j]<2:m[i][j]==m[i-d][j]+m[i][j-D])?p:0;return p>0;}

Provalo online!

Crediti


1
Bella risposta, ma dang, un sacco di variabili. ;) Oh, e -1: i==s||j==Sa i==s|j==S.
Kevin Cruijssen,

@KevinCruijssen se conosci un algoritmo migliore lo prendo! Ma la rotazione è la causa di tutte le variabili. Alcune lingue possono gestirle in 1-2 byte, in Java, devi pensare al codice che li circonda. L'algoritmo core è in realtà piuttosto breve: m->{int l=m.length,i=0,j;for(;i<l;i++)for(j=0;j<l;j++)p=(i<1|j<1?m[i][j]<2:m[i][j]==m[i-1][j]+m[i][j-1])?p:0;return p>0;}(122 byte)
Olivier Grégoire il

0

Gelatina , 22 byte

Ż€Iṫ2⁼ṖaFḢ=1Ʋ
,Ṛ;U$Ç€Ẹ

Provalo online!

Spiegazione

Collegamento helper, controlla se questa rotazione della matrice è valida

Ż€            | prepend each row with zero
  I           | find differences within rows
   ṫ2         | drop the first row
     ⁼Ṗ       | compare to the original matrix
              |   with the last row removed
       a      | logical and
        FḢ=1Ʋ | top left cell is 1

Collegamento principale

,Ṛ            | copy the matrix and reverse the rows
  ;U$         | append a copy of both of these
              |   with the columns reversed
     ǀ       | run each version of the matrix
              |   through the helper link
       Ẹ      | check if any are valid
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.