Um trem atravessa uma ponte rotulada

9

Considere uma ponte de comprimento B formada por blocos rotulados com os dígitos dos números inteiros positivos concatenados. Por exemplo, se B tivesse 41 anos, seria assim:

-----------------------------------------
12345678910111213141516171819202122232425

Agora imagine um trem de comprimento T atravessando a ponte. O ponto mais à esquerda do trem começa na posição X (indexada 1). Para entender melhor o problema, vamos fazer um esquema do evento, com B = 41, T = 10, X = 10 . O trem é desenhado usando sinais de igual ( =) e linhas:

         __________
         | ======== |
         | ======== |
-----------------------------------------
12345678910111213141516171819202122232425

O trem pode avançar, a cada passo, pela soma das peças únicas em que está localizado. Por exemplo, os blocos em que o trem está acima são [1, 0, 1, 1, 1, 2, 1, 3, 1, 4]:, os blocos únicos (deduplicados) são: [1, 0, 2, 3, 4]e sua soma é 10. Portanto, o trem pode avançar por 10ladrilhos. Devemos desenhá-lo novamente e repetir o processo até que o ponto mais à esquerda do trem tenha passado o último ladrilho:

                   __________
                   | ======== |
                   | ======== |
-----------------------------------------
12345678910111213141516171819202122232425

Soma de peças únicas: 1 + 5 + 6 + 7 + 8 + 9 = 36. O trem avança em 36 peças ...

                                                       __________
                                                       | ======== |
                                                       | ======== |
-----------------------------------------
12345678910111213141516171819202122232425

O trem obviamente atravessou a ponte completamente, então devemos parar agora.

Como as pessoas estão entediadas, elas contam as peças que o trem avançou a cada vez. Nesse caso específico, 10e 36. Resumindo tudo, o trem mudou 46antes de passar pela ponte.


Tarefa

Dado três números inteiros positivos, B (o comprimento da ponte), T (o comprimento do trem) e X (a posição inicial, indexada em 1 ), sua tarefa é determinar quantos ladrilhos o trem moveu até cruzar a ponte seguindo as regras acima.

  • Você pode assumir que:
    • B é maior do que o t .
    • X é menor do que B .
    • T é pelo menos 2 .
    • O trem finalmente atravessa a ponte.
  • Todas as nossas regras padrão se aplicam.
  • Isso é , então o código mais curto em bytes vence!

Casos de teste

Entrada ([B, T, X]) -> Saída

[41, 10, 10] -> 46
[40, 10, 10] -> 46
[30, 4, 16] -> 24
[50, 6, 11] -> 50

Outro exemplo funcionado para o último caso de teste:

A ponte é de comprimento 50, o trem 6 e a posição inicial é 11.

          ______
          | ==== |
          | ==== |
--------------------------------------------------
12345678910111213141516171819202122232425262728293

Ladrilhos exclusivos: [0, 1, 2]. Soma: 3.

             ______
             | ==== |
             | ==== |
--------------------------------------------------
12345678910111213141516171819202122232425262728293

Ladrilhos exclusivos: [1, 2, 3, 4]. Soma: 10.

                       ______
                       | ==== |
                       | ==== |
--------------------------------------------------
12345678910111213141516171819202122232425262728293

Ladrilhos exclusivos: [1, 7, 8, 9]. Soma: 25.

                                                ______
                                                | ==== |
                                                | ==== |
--------------------------------------------------
12345678910111213141516171819202122232425262728293

Ladrilhos exclusivos: [9, 3]. Soma: 12.
                                                            ______
                                                            | ==== |
                                                            | ==== |
--------------------------------------------------
12345678910111213141516171819202122232425262728293

Trem existe a ponte. Soma total: 3 + 10 + 25 + 12 = 50.
Mr. Xcoder
fonte
6
Podemos assumir o trem não cruze a ponte, eventualmente? Para entradas como (200, 2, 169), o trem fica preso 00na entrada …9899100101102….
Lynn
@ Lynn Um pouco tarde, sim, você pode.
Sr. Xcoder 10/10

Respostas:

3

Casca , 20 bytes

ṁ←U¡S↓←moΣuX_⁰↓Θ↑ṁdN

Experimente online!

Recebe três argumentos a fim T , B , X .

Explicação

ṁ←U¡S↓←moΣuX_⁰↓Θ↑ṁdN
                 ṁdN    Build the list of digits of natural numbers
              ↓Θ↑       Take the first B digits, add a 0 in front
                        then drop the first X digits
           X_⁰          Get all sublists of length T
       moΣu             Map the sum of unique values of each sublist

   ¡S↓←                 Repeatedly drop as many elements from the start of the list as the
                        first element of the list says;
                        keep all partial results in an infinite list.

  U                     Take elements until the first repeated one
                        (drops tail of infinite empty lists)

ṁ←                      Sum the first elements of each remaining sublist
Leo
fonte
6

Python 2 , 110 105 104 103 100 97 96 bytes

  • Economizou cinco bytes graças ao Sr. Xcoder ; removida a atribuição desnecessária, movida a negação para o espaço em branco disponível.
  • Salvou um byte graças ao Sr. Xcoder ; jogou golfe [~-x:x+~-t]para [~-x:][:t].
  • Salva um byte; jogou golfe ...range(1,-~b)))[:b]para ...range(b)))[1:-~b].
  • Salva três bytes; jogou golfe [1:-~b][~-x:]para [:-~b][x:].
  • Salva três bytes; jogou golfe [:-~b][x:]para [x:-~b].
  • Salvou um byte graças a Lynn ; jogando o whileloop em uma execdeclaração.
b,t,x=input();S=x;exec"x+=sum(set(map(int,''.join(map(str,range(b)))[x:-~b][:t])));"*b;print-S+x

Experimente online!

Jonathan Frech
fonte
Uma solução alternativa de 105 bytes de comprimento.
Jonathan Frech
104 bytes . [~-x:x+~-t]pode ser substituído por[x-1:][:t]
Mr. Xcoder
exec"x+=sum(set(map(int,''.join(map(str,range(b)))[x:-~b][:t])));"*bobras para 96. (O trem nunca vai demorar mais do que bpassos para deixar a ponte, e que toda a operação será de x+=0uma e outra vez que é esquerda.)
Lynn
4

Haskell, 106 102 bytes

import Data.List
(b#t)x|x>b=0|y<-sum[read[c]|c<-nub$take t$drop(x-1)$take b$show=<<[1..]]=y+(b#t)(x+y)

Experimente online!

(b#t)x
   |x>b=0                 -- if the train has left the bridge, return 0
   |y<-sum[   ]           -- else let y be the sum of
      read[c]|c<-         -- the digits c where c comes from
        nub               -- the uniquified list of
            show=<<[1..]] -- starting with the digits of all integers concatenated
          take b          -- taking b digits (length of bridge)
         drop(x-1)        -- dropping the part before the train
        take t            -- take the digits under the train
     =y+(b#t)(x+y)        -- return y plus a recursive call with the train advanced
nimi
fonte
3

R , 123 bytes

function(B,T,X){s=substring
while(X<B){F=F+(S=sum(unique(strtoi(s(s(paste(1:B,collapse=''),1,B),K<-X+1:T-1,K)))))
X=X+S}
F}

Apenas implementa o algoritmo descrito.

R é terrível nas cordas.

function(B,T,X){
 s <- substring                         # alias
 b <- s(paste(1:B,collapse=''),1,B)     # bridge characters
 while(X<B){                            # until we crossed the bridge
  K <- X+1:T-1                          # indices of the characters
  S <- s(b,K,K)                         # the characters from b
  S <- sum(unique(strtoi(S)))           # sum
  F <- F + S                            # F defaults to 0 at the beginning
  X <- X + S                            # advance the train
 }
 F                                      # number of steps, returned
}

Experimente online!

Giuseppe
fonte
2

Geléia ,  22  21 bytes

ḣ⁵QS
RDẎḣ⁸ṫṫÇ‘$$ÐĿÇ€S

Um programa completo com três argumentos - a ordem é B , X , T - que imprime o resultado.

Experimente online!

Como?

ḣ⁵QS - Link 1, calculate next jump: list of digits, bridge under and beyond train's left
 ⁵   - program's fifth command line argument (3rd input) = T (train length)
ḣ    - head to index (get the digits of the tiles under the train)
  Q  - de-duplicate
   S - sum

RDẎḣ⁸ṫṫÇ‘$$ÐĿÇ€S - Main link: number, B (bridge length); number, X (starting position)
R                - range(B) = [1,2,3,...,B-1,B]
 D               - to decimal list (vectorises) = [[1],[2],[3],...,[digits of B-1],[digits of B]]
  Ẏ              - tighten (flatten by one) = [1,2,3,...,digits of B-1,digits of B]
    ⁸            - chain's left argument, B
   ḣ             - head to index (truncate to only the bridge's digits)
     ṫ           - tail from index (implicit X) (truncate from the train's left)
           ÐĿ    - loop, collecting results, until no more change occurs:
          $      -   last two links as a monad:
         $       -     last two links as a monad:
       Ç         -       call last link (1) as a monad (get next jump)
        ‘        -       increment
      ṫ          -     tail from that index (remove the track to the left after train jumps)
             Ç€  - call last link (1) as a monad for €ach (gets the jump sizes taken again)
               S - sum
                 - implicit print
Jonathan Allan
fonte
1

JavaScript (ES6), 117 bytes

f=(B,T,X,g=b=>b?g(b-1)+b:'',o=0)=>X<B?[...g(B).substr(X-1,T)].map((e,i,a)=>o+=i+X>B|a[-e]?0:a[-e]=+e)&&o+f(B,T,X+o):0

Um par de funções recursivas:

  1. f() soma os movimentos do trem.
  2. g() cria a sequência de números.

Menos golfe:

f=
(B,T,X,
 g=b=>b?g(b-1)+b:'',                       //creates the string of numbers
 o=0                                       //sum of tiles the train sits on
)=>
  X<B?                                     //if we're not past the bridge:
      [...g(B).substr(X - 1,T)].map(       //  grab the tiles we're sitting on
        (e,i,a)=>o += i + X > B |          //  if we've passed the bridge,
                      a[-e] ? 0 :          //  ... or we've seen this tile before, add 0 to o
                              a[-e] = +e   //  else store this tile and add its value to o
      ) &&
      o + f(B,T,X+o) :                     //recurse
  0

Rick Hitchcock
fonte
0

PHP> = 7.1, 153 bytes

<?$s=substr;[,$p,$q,$r]=$argv;while($i<$p)$a.=++$i;$a=$s($a,0,$p);;while($r<$p){$x+=$n=array_sum(array_unique(str_split($s($a,$r-1,$q))));$r+=$n;}echo$x;

Experimente online!

Para torná-lo compatível com versões inferiores do PHP, altere [,$p,$q,$r]=para list(,$p,$q,$r)=(+4 bytes).

<?
[,$bridgelen,$trainlen,$position] = $argv;                  // grab input
while($i<$bridgelen)                                        // until the bridge is long enough...
  $bridgestr .= ++$i;                                       // add to the bridge
$bridgestr = substr($bridgestr,0,$bridgelen);               // cut the bridge down to size (if it splits mid-number)
while($position<$bridgelen){                                // while we are still on the bridge...
  $currtiles =                                              // set current tiles crossed to the...
    array_sum(                                              // sum of tiles...
      array_unique(                                         // uniquely...
        str_split(substr($bridgestr,$position-1,$trainlen)) // under the train
      )
    )
  ;
  $totaltiles += $currtiles;                                // increment total tiles crossed
  $position += $currtiles;                                  // set new position
}
echo $totaltiles;                                           // echo total tiles crossed
Jo.
fonte