Posti a sedere nel teatro


12

Compito

Un teatro ha 10 righe, etichettati Aa Jdalla parte anteriore alla parte posteriore e 15 posti in ogni fila, numerati da 1 a 15 da sinistra a destra.

Il programma utilizza le seguenti regole per scegliere i posti migliori.

  • Regola 1: tutti i posti in una prenotazione devono essere nella stessa fila, uno accanto all'altro.
  • Regola 2: i posti devono essere il più vicino possibile alla parte anteriore, quindi il più vicino possibile alla sinistra (lettera più bassa, quindi numero più basso)

Scrivi una funzione che accetta il numero di ticket desiderato come input intero ( n) e genera i migliori posti disponibili in un elenco di lunghezza n.

Il tuo programma dovrebbe:

  • Uscita -1se 1> Ingresso o Ingresso> 15 *
  • Uscita -1se i posti non sono disponibili *
  • Avere una funzione B(n)che l'utente può usare per inserire il numero desiderato di posti.

* È possibile generare -1 in un elenco se lo rende più semplice

Esempi

I / O

La chiamata B(5)su un nuovo array dovrebbe restituire La [A1, A2, A3, A4, A5]
chiamata B(2)dopo che dovrebbe quindi tornare La [A6, A7]
chiamata B(10)dopo che dovrebbe quindi tornare La [B1, B2, ... B9, B10]
chiamata B(-1)dovrebbe sempre tornare-1

Soluzione non golfata Python

Theatre = [ [False] * 16 ] * 11

def B(n):
    if 0 <= n <= 15:         
        for i in range(10):
            for j in range(15-n+1):
                try:
                    if not Theatre[i][j]:
                        if not Theatre[i][j + n]:
                            row = i
                            start = j
                            List = []
                            for q in range(n):
                                List.append(chr(row + 65) + str(start + q + 1))
                                Theatre[row][start + q] = True
                            return List
                except:
                    break
    return -1

1
È necessario "Hardcoded un elenco di posti in un array bidimensionale"? Ci sono molti modi per farlo senza quello; il requisito limita davvero le soluzioni.
Giustino,

2
Dici che l'array 2-D deve essere hardcoded, ma il tuo esempio Python non lo codifica nemmeno, usa una comprensione per creare un nuovo elenco in fase di runtime.
Tony Ellis,

6
Perché anche menzionare "un elenco di posti in una matrice bidimensionale"? Sembra un dettaglio di implementazione e se qualcuno crea un programma che soddisfa l'output richiesto senza usare un array, non dovrebbe esserci alcun problema.
Greg Hewgill,

2
cosa succede se l'ingresso è 0?
edc65,

1
@ edc65 Faccio sempre in modo che i miei sostenitori del cinema inesistenti siedano nel posto migliore del teatro, sulle ginocchia di un altro patrono, se necessario. Non se ne accorgono mai.
Adam Davis,

Risposte:


4

JavaScript - 172

La funzione stessa è 172:

//build persistent seats
m=[];
for(i=10;i--;){m[i]={r:String.fromCharCode(i+65),s:[]};for(j=0;j<15;j++)m[i].s.push(j+1);}

function b(z){for(i=0;i<m.length;i++)for(j=0,u=m[i].s.length;o=[],j<u;j++)if(u>=z&z>0){for(m[i].s=m[i].s.slice(z),p=m[i].s[0]||16;o[--z]=m[i].r+--p,z;);return o;}return-1;}

Ingresso:

console.log(b(-1));
console.log(b(0));
console.log(b(4));
console.log(b(15));
console.log(b(1));
console.log(b(20));

Produzione:

-1
-1
[ 'A1', 'A2', 'A3', 'A4' ]
[ 'B1', 'B2', 'B3', 'B4', 'B5', 'B6', 'B7', 'B8', 'B9', 'B10', 'B11', 'B12', 'B13', 'B14', 'B15' ]
[ 'A5' ]
-1

4

Javascript ( ES6 ) - 130 127 107 101 98

B=n=>(a=>{for(;n>0&a<9;)if((b=~~B[++a]+n)<16)for(B[a]=b;n--;)c[n]='ABCDEFGHIJ'[a]+b--})(c=[-1])||c

Demo qui: http://jsfiddle.net/tBu5G/

Alcune idee tratte da @ edc65


c [B [a] = b] invece di c [], B [a] = b è intelligente, ma non riesce per n = 0
edc65,

@ edc65 bella cattura. Ora l'ho modificato per gestire il cason=0
nderscore

Eccezionale. È qualcosa da ricordare per evitare il "ritorno" - grazie per aver condiviso (+1)
edc65,

@ edc65 grazie! Pensavo fosse interessante. MT0 ci ha battuti entrambi! : P
nderscore,

3

Haskell, 129

t=[[a:show s|s<-[1..15]]|a<-['A'..'J']]
b n=(n%).span((<n).length)
_%(h,[])=([],h)
n%(j,(r:s))=let(t,u)=splitAt n r in(t,j++u:s)

È stato necessario apportare alcune modifiche per rendere questa funzione in Haskell: brestituisce una coppia: i biglietti (se possibile) e il nuovo stato del teatro. tè lo stato iniziale del teatro, con tutti i biglietti invenduti. Inoltre, il ritorno è -1stato innaturale per Haskell, quindi se non è possibile emettere biglietti per una richiesta, viene restituito un elenco vuoto per i biglietti.

λ: let (k1,t1) = b 5 t
λ: k1
["A1","A2","A3","A4","A5"]

λ: let (k2,t2) = b 2 t1
λ: k2
["A6","A7"]

λ: let (k3,t3) = b 10 t2
λ: k3
["B1","B2","B3","B4","B5","B6","B7","B8","B9","B10"]

λ: let (k4,t4) = b (-1) t3
λ: k4
[]

λ: let (k5,t5) = b 2 t4
λ: k5
["A8","A9"]

3

APL (75)

T←10 15⍴0⋄B←{(⍵∊⍳15)∧∨/Z←,T⍷⍨⍵/0:+T[P]←{⎕A[⍺],⍕⍵}/¨P←(⊃Z/,⍳⍴T)∘+¨1-⍨⍳1⍵⋄¯1}

Test:

      B 5
  A1    A2    A3    A4    A5  
      B 2
  A6    A7  
      B 10
  B1    B2    B3    B4    B5    B6    B7    B8    B9    B10  
      B ¯1
¯1
      B 3
  A8    A9    A10  

Spiegazione:

  • T←10 15⍴0: Tè una matrice 15 per 10 che contiene lo stato del teatro (0 = libero)
  • B←{... }: la funzione
    • (⍵∊⍳15): se è un membro dell'insieme di numeri interi compresi tra 1 e 15,
    • ∨/Z←,T⍷⍨⍵/0: e Tcontiene zero in una riga (memorizzazione di possibili punti di inizio in Z),
    • :: poi:
      • (⊃Z/,⍳⍴T): seleziona le possibili coordinate iniziali e prendi la prima,
      • ∘+¨1-⍨⍳1⍵: aggiungi ⍵-1più posizioni a destra della coordinata iniziale
      • P←: memorizza le coordinate in P
      • {⎕A[⍺],⍕⍵}/¨: formatta le coordinate
      • T[P]←: memorizza le coordinate formattate al loro posto in T. (qualsiasi valore diverso da zero in T farà)
      • +: restituisce il risultato, ovvero le coordinate formattate (il risultato di un'assegnazione è tacito per impostazione predefinita)
    • ⋄¯1: altrimenti, ritorno ¯1.

3

Javascript (E6) 99 103 113 121

Davvero devi solo memorizzare un numero per ogni riga

B=n=>{for(r=i=[-1];n>0&i++<9;)if((a=~~B[i]+n)<16)for(B[i]=a;n--;)r[n]='ABCDEFGHIJ'[i]+a--;return r}

Test

'5:'+B(5)+'\n2:'+B(2)+'\n10:'+B(10)+'\n0:'+B(0)+'\n1:'+B(-1))+'\n3:'+B(3)

Ungolfed

B = n => {
  for (r = i = [-1]; n > 0 & i++ < 9;)
    if ((a = ~~B[i] + n) < 16)
      for (B[i] = a; n--; ) r[n] = 'ABCDEFGHIJ'[i] + a--;
  return r;
}

3

JavaScript (bozza ECMAScript 6) - 96 95 91 caratteri

Una soluzione ricorsiva:

Versione 1

B=(n,r=0)=>n>0&&(k=~~B[r])+n<16?[...Array(n)].map(_=>'ABCDEFGHIJ'[r]+(B[r]=++k)):r<9?B(n,r+1):-1

Versione 2:

B=(n,r=0)=>n<1|r>9?-1:(k=B[r]|0)+n<16?[...Array(n)].map(_=>'ABCDEFGHIJ'[r]+(B[r]=++k)):B(n,r+1)

(Grazie a nderscore per l'ispirazione per il salvataggio di 1 carattere)

Versione 3:

B=(n,r=0)=>n<1|r>9?-1:(B[r]^=0)+n<16?[...Array(n)].map(_=>'ABCDEFGHIJ'[r]+ ++B[r]):B(n,r+1)

(Grazie a nderscore )

Spiegazione:

B = function(n,r=0)          // Create a function B with arguments:
                             // - n is the number of seats to book
                             // - r is the row number (defaults to 0)
{
  var k = ~~B[r];            // get the number of seats already booked in row r
  if (  n > 0                // ensure that n is a valid booking
     && k+n<16 )             // check that there are enough seats remaining in row r
  {
    var P = new Array(n);    // Create an array with length n with no elements initialised
    var Q = [...P];          // Use P to create an array with every element
                             // initialised to undefined
    var R = 'ABCDEFGHIJ'[r]; // get the row ID.
    B[r] = k + n;            // Increment the number of seats booked in row r by n.
    var S = Q.map(
      function(){
        return R + (++k);    // Map each value of Q to the row ID concatenated with
                             // the seat number.
      }
    );
    return S;                // Return the array of seats.
  }
  else if ( r < 9 )          // If there are more rows to check
  {
    return B(n,r+1);         // Check the next row.
  }
  else                       // Else (if n is invalid or we've run out of rows)
  {
    return -1;               // Return -1.
  }
}

Bella soluzione. Stavo lavorando a qualcosa di simile. Ecco -1 byte:B=(n,r=0)=>n>0&r<9?(k=B[r]|0)+n<16?[...Array(n)].map(_=>'ABCDEFGHIJ'[r]+(B[r]=++k)):B(n,r+1):-1
nderscore

Grazie, sfortunatamente, uno non funziona perché non è possibile prenotare la riga J, ma negare il primo controllo da dare B=(n,r=0)=>n<1|r>9?-1:(k=B[r]|0)+n<16?[...Array(n)].map(_=>'ABCDEFGHIJ'[r]+(B[r]=++k)):B(n,r+1)dovrebbe funzionare.
MT0,

Ah, buona cattura.
nderscore,

E continua a scendere ... (91)B=(n,r=0)=>n<1|r>9?-1:(B[r]^=0)+n<16?[...Array(n)].map(_=>'ABCDEFGHIJ'[r]+ ++B[r]):B(n,r+1)
nderscore,

2

GolfScript, 103 82 byte

226,1>15/[0]*:T{:&0>{T[{),&~)>:|T\/,2=}?]{T|-:T;|{(.[15/65+]\15%)`+}%}-1if}-1if}:B

Esempi

$ cat theatre.gs
226,1>15/[0]*:T
{:&0>{T[{),&~)>:|T\/,2=}?]{T|-:T;|{(.[15/65+]\15%)`+}%}-1if}-1if}:B

5  B p  # Execute B(5), stringify and print.
2  B p
15 B p
17 B p
0  B p

{}:puts # Disable automatic output.
$
$ golfscript theatre.gs
["A1" "A2" "A3" "A4" "A5"]
["A6" "A7"]
["B1" "B2" "B3" "B4" "B5" "B6" "B7" "B8" "B9" "B10" "B11" "B12" "B13" "B14" "B15"]
-1
-1

Come funziona

226,1>           # Push the array [ 1 … 225 ].
15/[0]*          # Split in chunks of 15 elements and join separating by zeros.
:T               # Save result in T.
{                #
  :&0>           # Save the function's argument in & and check if it's positive.
  {              # If it is:
    T[{          # For each seat S in T:
      ),         # Push [ 0 … S ].
      &~)>       # Reduce two [ S-(&-1) … S ].
      :|         # Save the result in |.
      T\/        # Split T around |.
      ,2=        # If there are two chunks, the seats are available.
    }?]          # Find the first S that satisfies the above condition.
    {            # If there was a match:
      T|-:T;     # Remove the seats in | from T.
      |{         # For each seat S in |:
        (.       # Push S+1 S+1.
        [15/65+] # Compute (S+1)/15+65; the ASCII character corresponding to the row.
        \15%)`+  # Compute (S+1)%15+1, stringify and concatenate. 
      }%         #
    }            #
    -1if         # If there was no match, push -1 instead.
  }              #
  -1if           # If the argument was non-positive, push -1 instead.
}

1

CoffeeScript - 171 150 149

Sospetto che Ruby o Perl lo batteranno presto.

c=0;l=64;k=1
f=(n)->
 if n<0 or n>15 or 150-c<n
  return-1
 a=[]
 for i in[1..n]
  if c%15==0
   ++l;k=1
  ++c;a.push String.fromCharCode(l)+k;++k
 a

JavaScript equivalente / Spiegazione :

Per chi non ha familiarità con CoffeeScript.

var seats  = 0; //Occupied seats.
var letter = 64; //ASCII code for row letter.
var index  = 1;  //Index of seat in row.

function seats( count )
{
    if( count < 0 || count > 15 || ( 150 - seats ) < count )
        return -1;

    var assignedSeats = [];

    for( var i = 1; i <= count; ++i )
    {
        if( ( seats % 15 ) === 0 )
        {
            ++letter;
            index = 1;
        }

        ++seats; //Occupy a seat.
        assignedSeats.push( String.fromCharCode( letter ) + index );
        ++index;
    }

    return assignedSeats;
}

Provalo online .


1
Questa soluzione non soddisfa la regolaAll seats in one booking must be in the same row, next to each other.
nderscore

0

Cobra - 309

Questo dovrebbe farlo, ma in realtà non riesco a raggiungere un compilatore per alcune ore, quindi lo aggiornerò in seguito, se necessario.

class P
    var s=List<of List<of String>>()
    def main
        for l in 'ABCDEFGHIJ'
            t=[]
            for n in 1:16,t.insert(0,l.toString+n.toString)
            .s.add(t)
    def b(n) as List<of String>
        t=[]
        for r in .s.count,if .s[r].count>=n
            for i in n,t.add(.s[r].pop)
            break
        return if(n>0 and t<>[],t,['-1'])

0

C # - 289

Primo tentativo di golf del codice.

int[]s=new int[10];string[]B(int n){string[]x=new string[]{"-1"};if(n<1||n>15)return x;int m=(int)Math.Pow(2, n)-1;for(int i=0;i<10;++i){for(int j=0;j<15-n;++j){if((s[i] &m)==0){s[i]|=m;string[]r=new string[n];for(int k=0;k<n;++k)r[k]=(""+(char)(i+65)+(j+k+1));return r;}m<<=1;}}return x;}

Un-golfed

int[] s = new int[10];
string[] B(int n)
{
    string[] x = new string[] { "-1" };
    if (n < 1 || n > 15) return x;
    int m = (int)Math.Pow(2, n) - 1;
    for (int i = 0; i < 10; ++i)
    {
        for (int j = 0; j < 15 - n; ++j)
        {
            if ((s[i] & m) == 0)
            {
                s[i] |= m;
                string[] r = new string[n];
                for (int k = 0; k < n; ++k)
                    r[k] = ("" + (char)(i + 65) + (j+k+1));
                return r;
            }
            m <<= 1;
        }
    }
    return x;
}

0

K, 140

d:10#,15#0b
B:{if[(x<0)|x>15;:-1];$[^r:*&&/'~:^a:{(*&&/'{x(!1+(#x)-y)+\:!y}[d x;y])+!y}[;x]'!#d;-1;[.[`d;(r;a r);~:];(10#.Q.A)[r],/:$1+a r]]}

Ci sono senza dubbio numerosi miglioramenti da apportare qui


0

C ++ - 257

Anche un primo tentativo di golf.

static vector< int > t (10, 0);

vector<string> b(int n){
    vector<string> o;
    int i=0,j;
    for(;i<10&&16>n&&n>0;i++){
        if(15-t[i]<n) continue;
        char l='A'+i;
        for(j=t[i];j<n+t[i];j++){
           o.push_back(l + toS(j + 1));
        }
        t[i]+=n;
        n=0;
    }
    if(o.empty()) o.push_back("-1");
    return o;
}

Poiché to_string non funzionava con il mio compilatore, toS è definito come

string toS(int i){
    return static_cast<ostringstream*>( &(ostringstream() << i) )->str();
}

E come una piccola interfaccia

int main(){
int input = 0;
bool done = false;
while (!done){
    cout << "how many seats would you like? (0 to exit)\n";
    cin >> input;
    vector<string> selection = b(input);
    for (auto s : selection){
        cout << s << ' ';
    }
    cout << endl;
    if (input == 0) break;
}
return 0;
}

1
La semplice rimozione di spazi bianchi non necessari lo porta a 243 caratteri.
tomsmeding

Più golf a 236:vector<int> t(10,0);vector<string> b(int n){vector<string> o;for(int i=0,j;i<10&&16>n&&n>0;i++){if(15-t[i]<n)continue;char l='A'+i;for(j=0;j<n;j++)o.push_back(l+to_string(j+t[i]+1));t[i]+=n;n=0;}if(o.empty())o.push_back("-1");return o;}
tomsmeding

0

C # - 268 byte

Codice golfizzato:

int[]s=new int[10];string[]B(int n){string[]x={"-1"};if(n<1||n>15)return x;int m=(int)Math.Pow(2,n)-1;for(int i=0;++i<10;){for(int j=0;++j<15-n;){if((s[i]&m)==0){s[i]|=m;var r=new string[n];for(int k=0;++k<n;)r[k]=(""+(char)(i+65)+(j+k+1));return r;}m<<=1;}}return x;}

Codice non golfato:

    int[] s = new int[10];
    string[] B(int n)
    {
        string[] x = { "-1" };
        if (n < 1 || n > 15) return x;
        int m = (int)Math.Pow(2, n) - 1;
        for (int i = 0; ++i < 10;)
        {
            for (int j = 0; ++j < 15 - n;)
            {
                if ((s[i] & m) == 0)
                {
                    s[i] |= m;
                    var r = new string[n];
                    for (int k = 0; ++k < n;)
                        r[k] = ("" + (char)(i + 65) + (j + k + 1));
                    return r;
                }
                m <<= 1;
            }
        }
        return x;
    }

Avrei scritto alcune annotazioni in un commento sulla soluzione di GoldenDragon invece di crearne una mia, ma la mia reputazione non lo consente.

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.