Vedo il tuo BIDMAS e ti allevo un BADMIS


21

Vedo il tuo BIDMAS e ti allevo un BADMIS

Sfida

Dato un insieme di numeri con operatori tra loro: "5 + 4 * 9/3 - 8", restituisce tutti i possibili risultati dell'espressione per ogni permutazione dell'ordine delle operazioni di base: [/, *, +, -].

Regole

  • Scappatoie standard vietate
  • I / O
    • L'input deve essere ordinato con operazioni infix, ma comunque è più semplice (stringa o array)
    • Non è richiesto il supporto di operatori unari (ad es. "-3 * 8 / +2")
    • I numeri interi possono essere sostituiti da float per le lingue che analizzano implicitamente il tipo (es. 45 ⟶ 45.0)
    • L'output deve essere tutti i possibili risultati dell'espressione, nessun formato o ordine specificato
  • Tutti gli ingressi sono validi (ad es. Non è necessario trattare con "7/3 + *"). Questo significa anche che non dovrai mai dividere per zero.
  • Gli operatori sono tutti associativi di sinistra, quindi "20/4/2" = "(20/4) / 2"
  • Questo è Code Golf, quindi vince il minor numero di byte

Casi di prova (con spiegazione)

  • "2 + 3 * 4" = [14, 20]
    • 2 + (3 * 4) ⟶ 2 + (12) ⟶ 14
    • (2 + 3) * 4 ⟶ (5) * 4 ⟶ 20
  • "18/3 * 2 - 1" = [11, 2, 6]
    • ((18/3) * 2) - 1 ⟶ ((6) * 2) - 1 ⟶ (12) - 1 ⟶ 11
    • (18/3) * (2 - 1) ⟶ (6) * (1) ⟶ 6
    • (18 / (3 * 2)) - 1 ⟶ (18 / (6)) - 1 ⟶ (3) - 1 ⟶ 2
    • 18 / (3 * (2 - 1)) ⟶ 18 / (3 * (1)) ⟶ 6
    • 18 / ((3 * 2) - 1) ⟶ 18/5 ⟶ 3.6

Casi di prova (senza spiegazione)

  • "45/8 + 19/45 * 3" = [6.891666666666667, 18.141666666666666, 0.11111111111111113, 0.01234567901234568, 0.01234567901234568, 5.765740740740741]
  • "2 + 6 * 7 * 2 + 6/4" = [112 196 23 87.5]

2
Bella prima sfida, comunque.
Shaggy


Caso di prova suggerito 2 - 3 + 4=>[-5, 3]
Jo King,

Caso di prova suggerito: 2*3-6+2-9/6*8+5/2-9con 24 risultati distinti.
Arnauld,

Risposte:



3

C # (compilatore interattivo Visual C #) , 285 byte

x=>{int c=0,j,t=1,i;for(;c++<25;t=c){var r="*+-/".ToList();for(i=j=1;j++<4;t=t/j+1)(r[j-1],r[t%j])=(r[t%j],r[j-1]);float k(float z,int p=4){char d;int l;float m;return i<x.Count&&(l=r.IndexOf(d=x[i][0]))<p?k((m=k(x[(i+=2)-1],l))*0+d<43?z*m:d<44?z+m:d<46?z-m:z/m,p):z;}Print(k(x[0]));}}

Provalo online!

x=>{                                          //Lambda taking in a List<dynamic>
  int c=0,j,t=1,i;                            //A bunch of delcarations jammed together to save bytes
  for(;c++<25;t=c){                           //Loop 24 times (amount of permutations a set of length 4 can have)
    var r="/+*-".ToList();                    //Initialize r as list of operators
    for(i=j=1;j++<4;t=t/j+1)                    //Create the Tth permutation, saving result in r, also reset i to 1
      (r[j-1],r[t%j])=(r[t%j],r[j-1]);
    float k(float z,int p=4) {                //Define local function 'k', with z as current value accumalated and p as current precedence
      char d;int l;float m;                   //Some helper variables
      return i<x.Count                        //If this is not the last number
        &&(l=r.IndexOf(d=x[i][0]))<p?         //  And the current operator's precedence is higher than the current precedence
      k(                                      //  Recursive call with the accumalative value as
        (m=k(x[(i+=2)-1],l))                  //    Another recursive call with the next number following the current operator as seed value,
                                              //    And the next operator's precedence as the precedence value, and store that in variable 'm'
        *0+d<43?z*m:d<44?z+m:d<46?z-m:z/m,    //    And doing the appropriate operation to m and current value ('z')
        p)                                    //  Passing in the current precedence
    :z;                                       //Else just return the current number
    }
    Print(k(x[0]));                           //Print the result of calling k with the first number as starting value
  }
}

L'ho risolto, quindi non è necessario omettere i duplicati in quanto non è una parte fondamentale del problema, come sottolineato.
Freddie R,

1
@Arnauld Risolto al costo di 4 byte, era perché il mio algoritmo di permutazioni era un po 'sbagliato
Embodiment of Ignorance

3

JavaScript (Node.js) , 132 byte

a=>(w=[],F=(b,a)=>b?[...b].map(q=>F(b.replace(q,""),a.replace(eval(`/[\\d.-]+( \\${q} [\\d.-]+)+/g`),eval))):w.push(a))("+-*/",a)&&w

Provalo online!

Ciò consente output duplicati.

JavaScript (Node.js) , 165 161 155 153 152 137 byte

a=>Object.keys((F=(b,a)=>b?[...b].map(q=>F(b.replace(q,""),a.replace(eval(`/[\\d.-]+( \\${q} [\\d.-]+)+/g`),eval))):F[a]=1)("+-*/",a)&&F)

Provalo online!

Prende una stringa con spazi tra operatori e numeri.

a=>                                             // Main function:
 Object.keys(                                   //  Return the keys of the -
  (
   F=(                                          //   Index container (helper function):
    b,                                          //    Operators
    a                                           //    The expression
   )=>
    b                                           //    If there are operators left:
    ?[...b].map(                                //     For each operator:
     q=>
      F(                                        //      Recur the helper function - 
       b.replace(q,""),                         //       With the operator deleted
       a.replace(                               //       And all -
        eval(`/[\\d.-]+( \\${q} [\\d.-]+)+/g`), //        Expressions using the operator
        eval                                    //        Replaced with the evaluated result
       )
      )
    )
    :F[a]=1                                     //     Otherwise - set the result flag.
  )(
   "+-*/",                                      //    Starting with the four operators
   a                                            //    And the expression
  )
  &&F
 )

@JoKing Implementata la correzione che ho dichiarato prima, dovrebbe essere emessa [3, -5]ora.
Shieru Asakoto,

2

Perl 6 , 92 90 88 byte

{map {[o](@_)($_)},<* / + ->>>.&{$^a;&{S:g{[\-?<[\d.]>+]+%"$a "}=$/.EVAL}}.permutations}

Provalo online!

Prende una stringa con uno spazio dopo qualsiasi operatore e restituisce un set di numeri. Questo funziona principalmente sostituendo tutte le istanze di n op ncon il risultato valutato per tutte le permutazioni degli operatori.

Spiegazione:

{                                                                                   }  # Anonymous code block
                    <* / + ->>>.&{                                    } # Map the operators to:
                                  $^a;&{                             }  # Functions that:
                                        S:g{                }      # Substitute all matches of:
                                            \-?<[\d.]>+]+        # Numbers
                                                         %$a     # Joined by the operator
                                                              =$/.EVAL   # With the match EVAL'd
 map {           },                                                    .permutations   # Map each of the permutations of these operators
      [o](@_)        # Join the functions
             ($_)    # And apply it to the input

È possibile rimuovere set, poiché è stata rimossa la condizione per eliminare i duplicati. Bel codice.
Freddie R,

2

Python 3 , 108 byte

f=lambda e,s={*"+-*/"}:[str(eval(p.join(g)))for p in s for g in zip(*map(f,e.split(p),[s-{p}]*len(e)))]or[e]

Provalo online!

La funzione accetta una singola stringa come input e restituisce un elenco di possibili risultati.

Ungolfed

def get_all_eval_results(expr, operators={*"+-*/"}):
    results = []
    for operator in operators:
        remaining_operators = operators - {operator}

        # Split expression with the current operator and recursively evaluate each subexpression with remaining operators
        sub_expr_results = (get_all_eval_results(sub_expr, remaining_operators) for sub_expr in expr.split(operator))

        for result_group in zip(*sub_expr_results):   # Iterate over each group of subexpression evaluation outcomes
            expr_to_eval = operator.join(result_group)  # Join subexpression outcomes with current operator
            results.append(str(eval(expr_to_eval)))   # Evaluate and append outcome to result list of expr
    return results or [expr]  # If results is empty (no operators), return [expr]

Provalo online!


1

Gelatina , 30 byte

œṡ⁹¹jṪḢƭ€jŒVɗßʋFL’$?
Ḋm2QŒ!烀

Provalo online!

Una coppia di collegamenti. Il secondo è il collegamento principale e prende come argomento un elenco Jelly di float / numeri interi intervallati dagli operatori come caratteri. Questa è una versione appiattita del modo in cui Jelly prende il suo input quando viene eseguito come programma completo con argomenti da riga di comando. Il valore restituito del collegamento è un elenco di elenchi di elenchi di singoli membri, ognuno dei quali è un valore possibile per l'espressione.

Spiegazione

Link di aiuto

Prende un elenco di float / numeri interi che si alternano con operatori (come caratteri) come argomento sinistro e un operatore come carattere come argomento destro; restituisce l'elenco di input dopo aver valutato i numeri separati dall'operatore interessato, lavorando da sinistra a destra.

œṡ⁹                  | Split once by the right argument (the operator currently being processed)
                   ? | If:
                  $  | - Following as a monad
                L    |   - Length
                 ’   |   - Decremented by 1
              ʋ      | Then, following as a dyad:
   ¹                 | - Identity function (used because of Jelly’s ordering of dyadic links at the start of a dyadic chain)
    j       ɗ        | - Join with the following as a dyad, using the original left and right arguments for this chain:
     ṪḢƭ€            |   - Tail of first item (popping from list) and head from second item (again popping from list); extracts the numbers that were either side of the operator, while removing them from the split list
         j           |   - Joined with the operator
          ŒV         |   - Evaluate as Python (rather than V because of Jelly’s handling of decimals with a leading zero)
            ß        | - Recursive call to this helper link (in case there are further of the same operator)
               F     | Else: Flatten

Collegamento principale

Prende un elenco di float / numeri interi che si alternano agli operatori (come caratteri)

Ḋ         | Remove first item (which will be a number)
 m2       | Every 2nd item, starting with the first (i.e. the operators)
   Q      | Uniquify
    Œ!    | Permutations
      烀 | For each permuted list of operators, reduce using the helper link and with the input list as the starting point

1

Python 2 , 182 172 byte

import re
def f(s,P=set('+-/*')):
 S=[eval(s)]
 for p in P:
	t=s
	while p+' 'in t:t=re.sub(r'[-\d.]+ \%s [-\d.]+'%p,lambda m:`eval(m.group())`,t,1)
	S+=f(t,P-{p})
 return S

Provalo online!

Accetta input con ints formattati come float, come da "I numeri interi possono essere sostituiti da float per le lingue che analizzano implicitamente il tipo".


1

Julia 1.2 , 88 (82) byte

f(t)=get(t,(),[f.([t[1:i-1];t[i+1](t[i],t[i+2]);t[i+3:end]] for i=1:2:length(t)-2)...;])
julia> f([2, +, 3, *, 4])
2-element Array{Int64,1}:
 20
 14

julia> f([18, /, 3, *, 2, -, 1])
6-element Array{Float64,1}:
 11.0
  6.0
  2.0
  3.6
  6.0
  6.0

Prende un nastro sotto forma di un vettore di numeri e funzioni di infissione, valuta ogni singola chiamata di funzione e passa ricorsivamente ogni nastro risultante a se stesso fino a quando rimane un solo numero. Sfortunatamente,get(t, (), ...) non funziona correttamente in Julia 1.0, quindi è necessaria una versione più recente.

È possibile salvare sei byte, se un gruppo di matrici nidificate è accettabile come output:

f(t)=get(t,(),f.([t[1:i-1];t[i+1](t[i],t[i+2]);t[i+3:end]] for i=1:2:length(t)-2))

Produzione:

julia> f([18, /, 3, *, 2, -, 1])
3-element Array{Array{Array{Float64,1},1},1}:
 [[11.0], [6.0]]
 [[2.0], [3.6]] 
 [[6.0], [6.0]] 

0

Perl 5 ( -alp), 89 byte

my$x;map{$x.=$`.(eval$&.$1).$2.$"while/\d+[-+*\/](?=(\d+)(.*))/g}@F;$_=$x;/[-+*\/]/&&redo

TIO

o valori univoci, 99 byte

my%H;map{$H{$`.(eval$&.$1).$2}++while/\d+[-+*\/](?=(\d+)(.*))/g}@F;$_=join$",keys%H;/[-+*\/]/&&redo
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.