Ist das Pascals Matrix?


25

Im Pascalschen Dreieck ist jede Zahl die Summe der beiden Zahlen direkt darüber, wobei leere Stellen als Null behandelt werden:

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

Durch Drehen des Dreiecks können wir quadratische Matrizen unterschiedlicher Größe und Drehung ausschneiden, die ich Pascals Matrizen nenne . Beachten Sie, dass diese Matrizen immer die oberste 1 . Hier sind einige Beispiele:

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

Die Aufgabe

Entscheiden Sie bei einer quadratischen Matrix mit positiven Zahlen in einem beliebigen vernünftigen Format, ob es sich um eine Pascal-Matrix handelt .

Entscheiden bedeutet, entweder wahre oder falsche Werte zurückzugeben, je nachdem, ob es sich bei der Eingabe um eine Pascal-Matrix handelt , oder zwei konstante Werte festzulegen und einen für die wahren Eingaben und einen für die falschen Eingaben zurückzugeben.

Das ist , also versuchen Sie, so wenig Bytes wie möglich in der Sprache Ihrer Wahl zu verwenden. Der kürzeste Code in jeder Sprache gewinnt, daher werde ich keine Antwort akzeptieren.

Testfälle

Wahr

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

Falsch

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

Empfohlene Testfall: [[40, 20, 8, 2], [20, 12, 6, 2], [8, 6, 4, 2], [2, 2, 2, 2]]. Meine ursprüngliche Antwort war in diesem Fall falsch, aber für alle aktuellen Testfälle korrekt.
Kevin Cruijssen

@ KevinCruijssen Danke, hinzugefügt.
Laikoni

Antworten:


6

Brachylog , 28 24 23 Bytes

Das fühlt sich ziemlich lang an, aber hier ist es trotzdem

  • -4 Bytes dank DLosc durch Komprimieren der optionalen Klappen
  • Nochmals -1 Byte dank DLosc, indem Sie die Teilsummen in einem Durchgang ausführen

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

Erläuterung

{|↔}\↰₁{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

Probieren Sie es online!



4

MATL , 17 Bytes

4:"Gas2YLG@X!X=va

Probieren Sie es online! Oder überprüfen Sie alle Testfälle .

Ansonsten Ausgänge 1für Pascal-Matrizen 0.

Erläuterung

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 Bytes

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

Probieren Sie es online!

Böse...

Erzeugt ein kanonische Pascals Matrix Zmit Dimensionen , dass die Gleich mprüft dann , ob die Eingangsmatrix mist identicalauf anyden Drehungen Z.


2

Kohle , 41 Bytes

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

Probieren Sie es online! Link ist eine ausführliche Version des Codes. Erläuterung:

F‹¹⌈§θ⁰

Wenn das Maximum der ersten Zeile größer als 1 ist,

≔⮌θθ

Klappen Sie dann das Eingabearray um.

F‹¹⌈Eθ§ι⁰

Wenn das Maximum seiner ersten Spalte größer als 1 ist,

≦⮌θ

Spiegeln Sie dann das Eingabearray.

⌊⭆θ⭆ι

Durchlaufen Sie die Elemente des Eingabearrays und geben Sie das minimale Ergebnis (dh das logische Und aller Ergebnisse) aus.

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

Vergleichen Sie jeden Wert mit 1, wenn er sich in der ersten Zeile befindet, andernfalls die Summe der darüber liegenden Zeile bis einschließlich der darüber liegenden Zelle.


1

Python 2 , 129 Bytes

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

Probieren Sie es online!

Kehrt zurück True ob Mes sich um eine Pascal-Matrix handelt 0.


1

05AB1E , 29 Bytes

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

Probieren Sie es online aus oder überprüfen Sie alle Testfälle .

Erläuterung:

¬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 Bytes

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

Probieren Sie es 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;}

Probieren Sie es online!

Credits


1
Schöne Antwort, aber verdammt, jede Menge Variablen. ;) Oh, und -1: i==s||j==Sbis i==s|j==S.
Kevin Cruijssen

@ KevinCruijssen Wenn Sie einen besseren Algorithmus kennen, nehme ich es! Aber die Rotation ist die Ursache für alle Variablen. Einige Sprachen können mit 1-2 Bytes umgehen, in Java muss man sich den Code um sie herum überlegen. Der Kernalgorithmus ist eigentlich ziemlich kurz: 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 Bytes)
Olivier Grégoire

0

Jelly , 22 Bytes

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

Probieren Sie es online!

Erläuterung

Hilfslink, prüft ob diese Rotation der Matrix gültig ist

Ż€            | 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

Hauptlink

,Ṛ            | 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
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.