Corrida de números descendentes

10

Sua tarefa é criar um programa que adicione números aleatórios a somas anteriores no confronto final de corridas de números.

Cada corredor (coluna) começa em 0 e adiciona 1 ou 0 à soma anterior em cada etapa da corrida até que todos os atletas atinjam a pontuação necessária para vencer. O 1 ou 0 deve ser escolhido aleatoriamente (a definição padrão de aleatório pode ser encontrada aqui ). A saída mostrará o resultado da corrida, com cada coluna representando um corredor, neste formato:

>> racers:5,score needed:2

0 0 0 0 0 # all racers start at 0
+ + + + + # add
1 0 0 0 1 # random 1 or 0
= = = = = # equals
1 0 0 0 1 # sum
+ + + + +
0 0 0 0 1
= = = = =
1 0 0 0 2 # winner!
+ + + +  
1 1 1 1  
= = = =  
2 1 1 1  
  + + +  
  1 1 1  
  = = =  
  2 2 2   # losers

Nota: somente os números, + e = precisam ser incluídos na saída.

Entrada

Seu programa aceitará os dois parâmetros a seguir como entrada:

  1. o número de corredores (colunas), que deve ser maior que dois
  2. a pontuação necessária para vencer, que deve ser maior que um

Isso é código-golfe - o programa com menos bytes vence.

Editar: há uma pontuação máxima não aplicável de 9 - isso é para preservar a integridade da coluna. Além disso, os espaços entre as colunas podem ser omitidos na saída.

atlasologist
fonte
Qual é o número máximo de colunas e a pontuação máxima que precisariam ser suportadas?
Nanofarad
Não há um máximo definido, portanto seria o mesmo que o mínimo: pelo menos três colunas e uma pontuação de duas.
atlasologist
3
A pontuação exigida terá dois dígitos?
Leaky Nun
4
"apenas os números, + e = precisam ser incluídos na saída." e os espaços?
Leaky Nun
Os espaços não precisam ser preservados, estão no exemplo da clareza. Boa pergunta sobre os dois dígitos - suponho que exista uma pontuação máxima, que é nove. Eu vou editar a pergunta.
Atlasologist

Respostas:

5

Geléia, 37 36 33 bytes

,‘X
0Ç<³$пµżIFµ“+=”ṁṖ⁸żF
ÇСḊz⁶G

3 bytes graças a Dennis.

Experimente online

Explicação

,‘X                    Helper link. Argument: n. Radomly return n or n+1.

 ‘                     Increment n
,                      Pair. Yield [n, n+1]
  X                    Return a random item from the pair.

0Ç<³$пµżIFµ“+=”ṁṖ⁸żF   Monadic link. Argument: s. Generate one racer.

0                       Start with value 0.
  <³$пµ                While value is less than s:
 Ç                        Use helper link to increment current value.
                        Collect intermediate results in a list.
         I              Compute consecutive differences.
        ż               Zip intermediate results with their next increment value 0 or 1.
          Fµ            Flatten. Let's call the current list A.
                        Odd items of A are racer state and even items are random 0 or 1.
            “+=”        Yield "+=".
                 Ṗ      Yield A without its last element.
                ṁ       Mold i.e Repeat the characters of the string until it contains length(A)-1 characters.
                  ⁸ż    Zipwith. Pair the elements of A with the correponding characters
                    F   Flatten.

ÇСṫ2z” G               Main link. Arguments: s (score needed), r (#racers)

ÇС                     Call the link above r times.
                        Generate a list of r racers.
   Ḋ                    Remove first element of the list (its a garbage s value)
    z⁶                  Transpose with space as fill value.
      G                 Grid. Format the result.
Essari
fonte
Você pode substituir o primeiro link auxiliar por ,‘X(parear com n incrementado , escolha aleatória). No link principal ṫ2pode ser substituída por (dequeue) e com a variável .
Dennis
5

Pitão , 38 34 bytes

j.tm + j \ = jL \ + C, .u + NYJ.WnsHQ + ZO2Y0J + \ = QE
j.tmj \ = jL \ + .T, .u + NYJ.WnsHQ + ZO2Y0JE

Experimente online!

Freira Furada
fonte
2

TSQL, 367 345 341 bytes

Golfe

DECLARE @r int=20, -- racers
        @g char=2  -- goal

DECLARE @ varchar(99)=REPLICATE('0',@r)a:PRINT @
DECLARE @A varchar(99)='',@s varchar(99)='',@i int=0WHILE @i<@r
SELECT
@i+=1,@A+=char(43-x*11),@s+=IIF(x=1,' ',LEFT(y,1)),@=RIGHT(@,@r-1)+IIF(x=1,' ',REPLACE(LEFT(@,1)+y,@g+1,' '))FROM(SELECT
IIF(LEFT(@,1)IN('',@g),1,0)x,ROUND(RAND(),0)y)z
PRINT @A+'
'+@s+'
'+REPLACE(@A,'+','=')IF @>''goto a

Experimente online

Ungolfed:

DECLARE @r int=10, -- racers
        @g char=2  -- goal

DECLARE @ varchar(99)=REPLICATE('0',@r)
a:
PRINT @
DECLARE @A varchar(99)='',@s varchar(99)='',@i int=0

WHILE @i<@r
  SELECT
    @i+=1,
    @A+=char(43-x*11),
    @s+=IIF(x=1,' ',LEFT(y,1)),
    @=RIGHT(@,@r-1)+IIF(x=1,' ',REPLACE(LEFT(@,1)+y,@g+1,' '))
  FROM(SELECT IIF(LEFT(@,1)IN('',@g),1,0)x,ROUND(RAND(),0)y)z

PRINT @A+'
'+@s+'
'+REPLACE(@A,'+','=')

IF @>''GOTO a

Observe que a semente aleatória no local do teste sempre será a mesma, fornecendo o mesmo resultado cada vez; no gerenciamento de estúdio, ela fornecerá resultados diferentes. Pode usar valores diferentes para pilotos e objetivo para obter uma imagem diferente

t-clausen.dk
fonte
1

Python 3, 237 bytes

from random import*
def f(n,t):
 x='0'*n,;i=j=0;y=''
 while' '*n!=x[i]:
  if j==n:j=0;x+=y,;y='';print(x[i]);i+=1
  y+=' 'if x[i][j]in(' ',str(t))else eval(["'+'","str(randint(0,1))","'='","str(int(x[i-3][j])+int(x[i-1][j]))"][i%4]);j+=1

Uma função que recebe entrada via argumento e imprime em STDOUT. Essa abordagem utiliza o fato de que a saída segue um ciclo do período quatro, na forma '+ valor = valor', para todos os corredores. Usando um contador módulo quatro, uma lista contendo o valor desejado para cada etapa como uma string pode ser indexada e o resultado avaliado usando a função eval do Python.

Como funciona

from random import*                       Import Python's random module to access the
                                          randint function
def f(n,t):                               Function with input number of racers n and target
                                          number t
x='0'*n,;i=j=0;y=''                       Initialise return tuple storage x, state number
                                          i, racer number j and append string y for x
while' '*n!=x[i]:                         Loop through all j for some i. If the current
                                          state consists only of spaces, all racers have
                                          finished, so stop
y+=...eval([...][i%4])...                 Index into list, using i mod 4, to find the
                                          desired process for the cycle step, and append to
                                          y
(If first step of cycle)
...+...                                   Plus sign
(If second step of cycle)
...str(randint(0,1))...                   Random number from (0,1)
(If third step of cycle)
...=...                                   Equals sign
(If fourth step of cycle)
...str(int(x[i-3][j])+int(x[i-1][j]))...  Addition of random number to previous racer
                                          'score'
...' 'if x[i][j]in(' ',str(t))...         But append space if the racer has previously
                                          finished, or has reached the target
...j+=1                                   Increment j
if j==n:j=0;x+=y,;y='';print(x[i]);i+=1   If j=n, all j must have been looped through.
                                          Reset j, append new state y to x, reset y, print
                                          current state to STDOUT and increment i. When
                                          this first executes, x contains only the initial
                                          state, meaning that this is printed and the cycle
                                          starts with the second state.

Experimente no Ideone

TheBikingViking
fonte
1

Python 2 , 191 bytes

from random import*
def c(p,w,r=[],l=0):
 while p:
	p-=1;s='0'
	while`w`>s[-1]:s+="+%s="%randint(0,1);s+=`eval(s[-4:-1])`;l+=2
	r+=[s]
 for z in map("".join,zip(*(t+l*' 'for t in r))):print z

Experimente online!


Python 3 , 200 bytes

from random import*
def c(p,w,r=[],l=0):
 while p:
  p-=1;s='0'
  while str(w)>s[-1]:s+="+%s"%randint(0,1);s+="=%s"%eval(s[-3:]);l+=2
  r+=[s]
 for z in map("".join,zip(*(t+l*' 'for t in r))):print(z)

Experimente online!

Jitse
fonte
0

Python 2, 278 bytes

import random
r=5
w=2
s=(0,)*r
while s.count(w)<len(s):
    print ''.join(map(lambda a:str(a),s))+"\n"+'+'*len(s)
    s = tuple(map(lambda x: x<w and x+random.randrange(2) or x,s))
    print ''.join(map(lambda a:str(a), s))+"\n"+'='*len(s)
    s = tuple([x for x in s if x!= w])

onde r é o não. de pilotos ew é a pontuação para ganhar

Experimente aqui!

Swadhikar C
fonte
2
Testei seu programa, ele não mostra o resultado, conforme descrito na pergunta, tudo foi movido para a esquerda.
t-clausen.dk
0

Perl 5 , 150 bytes

$,=$";say@n=(0)x(@e=('=')x(@p=('+')x<>));$t=<>;while(grep$_<$t,@n){@r=map{$_+=($g=0|rand 2);$g}@n;for$l(p,r,e,n){say map{$n[$_]>$t?$":$$l[$_]}0..$#n}}

Experimente online!

A primeira entrada é o número de corredores, a segunda é a pontuação necessária.

Xcali
fonte