Gere valores preguiçosos

25

Relacionado: Programe meu forno de microondas . Inspirado em Gerar entrada de microondas preguiçosa .

O valor lento do número inteiro não negativo N é o menor dos números inteiros mais próximos de N, enquanto todos os seus dígitos são idênticos.

Retorno (por qualquer meio) o valor de um dado preguiçoso (por qualquer meio) N .

No maior número inteiro que seu idioma representa na forma não expoente por padrão. 1000000 (Muitas soluções interessantes são perdidas devido a esse requisito muito alto.)

Casos de teste:

   0 →    0
   8 →    8
   9 →    9
  10 →    9
  16 →   11
  17 →   22
  27 →   22
  28 →   33
 100 →   99
 105 →   99
 106 →  111
 610 →  555
 611 →  666
7221 → 6666
7222 → 7777 

O colega em questão provou que não haverá vínculos: exceto em 11/9, 99/111 etc., sendo um mais curto que o outro, duas respostas válidas consecutivas estão sempre a uma distância ímpar, portanto, nenhum número inteiro pode ser exatamente equidistante deles.

Adão
fonte

Respostas:

15

JavaScript (ES6), 31 bytes

n=>~-(n*9+4).toPrecision(1)/9|0

Calcula diretamente o valor lento de cada um n.

Editar: funciona apenas até 277777778 devido às limitações do tipo inteiro do JavaScript. Versões alternativas:

n=>((n*9+4).toPrecision(1)-1)/9>>>0

35 bytes, funciona até 16666666667.

n=>((n=(n*9+4).toPrecision(1))-n[0])/9

38 bytes, funciona até 944444444444443. Mas isso ainda está um pouco abaixo de 2 53, que é 9007199254740992.

Neil
fonte
@ user81655 Adicionei algumas versões alternativas com suas limitações numéricas.
Neil
1
Eu também não consegui trabalhar com esse algoritmo Number.MAX_SAFE_INTEGERporque 8e16 - 1é expresso como 8e16. Infelizmente, parece que a única maneira seria codificar o resultado máximo. +1, no entanto.
user81655
@ user81655 Abaixei o limite superior para permitir a solução.
Adám
Você chegou a 10k @Neil, adoro os tacos!
NiCk Newman
1
@NiCkNewman Woohoo! Obrigado!
Neil
5

Gelatina, 16 bytes

ḤRµDIASµÐḟµạ³ỤḢị

Experimente online!

Como funciona

ḤRµDIASµÐḟµạ³ỤḢị  Main link. Input: n

Ḥ                 Compute 2n.
 R                Yield [1, ..., 2n] or [0].
  µ               Begin a new, monadic chain. Argument: R (range)
   D              Convert to base 10.
    I             Compute all differences of consecutive decimal digits.
     A            Take the absolute values of the differences.
      S           Sum the absolute values.
       µÐḟ        Filter-false by the chain to the left.
          µ       Begin a new, monadic chain. Argument: L (lazy integers)
           ạ³     Take the absolute difference of each lazy integer and n (input).
             Ụ    Grade up; sort the indices of L by the absolute differences.
                  This is stable, so ties are broken by earlier occurrence and,
                  therefore, lower value.
              Ḣ   Head; retrieve the first index, corresponding to the lowest
                  absolute difference.
               ị  Retrieve the item of L at that index.
Dennis
fonte
4

Oracle SQL 11.2, 200 bytes

WITH v(i)AS(SELECT 0 FROM DUAL UNION ALL SELECT DECODE(SIGN(i),0,-1,-1,-i,-i-1)FROM v WHERE LENGTH(REGEXP_REPLACE(:1+i,'([0-9])\1+','\1'))>1)SELECT:1+MIN(i)KEEP(DENSE_RANK LAST ORDER BY rownum)FROM v;

Sem golfe

WITH v(i) AS
(
  SELECT 0 FROM DUAL      -- Starts with 0
  UNION ALL
  SELECT DECODE(SIGN(i),0,-1,-1,-i,-i-1) -- Increments i, alternating between negatives and positives
  FROM   v 
  WHERE  LENGTH(REGEXP_REPLACE(:1+i,'([0-9])\1+','\1'))>1  -- Stop when the numbers is composed of only one digit
)
SELECT :1+MIN(i)KEEP(DENSE_RANK LAST ORDER BY rownum) FROM v;
Jeto
fonte
3

Pitão - 26 bytes

Essa resposta nem sempre retorna o menor valor em um empate, mas isso não está nas especificações, portanto, aguardando esclarecimentos fixados por 3 bytes.

hSh.g.a-kQsmsM*RdjkUTtBl`Q

Conjunto de Teste .

Maltysen
fonte
3

Pitão, 16 bytes

haDQsM*M*`MTSl`Q

Experimente on-line: Demonstration or Test Suite

Explicação:

haDQsM*M*`MTSl`Q   implicit: Q = input number
              `Q   convert Q to a string
             l     take the length
            S      create the list [1, 2, ..., len(str(Q))]
         `MT       create the list ["0", "1", "2", "3", ..., "9"]
        *          create every combination of these two lists:
                   [[1, "0"], [1, "1"], [1, "2"], ..., [len(str(Q)), "9"]]
      *M           repeat the second char of each pair according to the number:
                   ["0", "1", "2", ..., "9...9"]
    sM             convert each string to a number [0, 1, 2, ..., 9...9]
  D                order these numbers by:
 a Q                  their absolute difference with Q
h                  print the first one
Jakube
fonte
3

MATL , 25 bytes

2*:"@Vt!=?@]]N$vtG-|4#X<)

Utiliza força bruta, por isso pode demorar um pouco para grandes números.

Experimente online!

2*:       % range [1,2,...,2*N], where is input
"         % for each number in that range
  @V      %   push that number, convert to string
  t!=     %   test all pair-wise combinations of digits for equality
  ?       %   if they are all equal
    @     %     push number: it's a valid candidate
  ]       %   end if
]         % end for each
N$v       % column array of all stack contents, that is, all candidate numbers
t         % duplicate
G-|       % absolute difference of each candidate with respect to input
4#X<      % arg min
)         % index into candidate array to obtain the minimizer. Implicitly display
Luis Mendo
fonte
3

Perl, 32

Baseado na bela solução JavaScript de Neil.

$_=0|1/9*~-sprintf"%.e",$_*9+4.1

Começa a falhar às 5e15

Ton Hospel
fonte
2

Mathematica, 122 bytes

f@x_:=Last@Sort[Flatten@Table[y*z,{y,1,9},{z,{FromDigits@Table[1,10~Log~x+1-Log[10,1055555]~Mod~1]}}],Abs[x-#]>Abs[x-#2]&]

Função denominada x.

CalculatorFeline
fonte
2

JavaScript (ES6), 59 bytes

n=>eval(`for(i=a=0;i<=n;a=i%10?a:++i)p=i,i+=a;n-p>i-n?i:p`)

Solução Recursiva (56 bytes)

Isso é um pouco mais curto, mas não funciona n > 1111111110porque o tamanho máximo da pilha de chamadas foi excedido, sendo tecnicamente inválido.

f=(n,p,a,i=0)=>n<i?n-p>i-n?i:p:f(n,i,(i-=~a)%10?a:i++,i)

Explicação

Repete todos os números preguiçosos até chegar ao primeiro maior que n, depois, compara-se na este e ao número anterior para determinar o resultado.

var solution =

n=>
  eval(`           // eval enables for loop without {} or return
    for(
      i=a=0;       // initialise i and a to 0
      i<=n;        // loop until i > n, '<=' saves having to declare p above
      a=i%10?a:++i // a = amount to increment i each iteration, if i % 10 == 0 (eg.
    )              //     99 + 11 = 110), increment i and set a to i (both become 111)
      p=i,         // set p before incrementing i
      i+=a;        // add the increment amount to i
    n-p>i-n?i:p    // return the closer value of i or p
  `)
N = <input type="number" oninput="R.textContent=solution(+this.value)"><pre id="R"></pre>

user81655
fonte
Abaixei o limite superior para permitir sua solução.
Adám
2

Japonês , 18 bytes

9*U+4 rApUs l¹/9|0

Experimente online!

Baseado na técnica de Neil

Solução não concorrente :

*9+4 h /9|0
Oliver
fonte
1
E agora você pode fazer *9+4 h /9|0:-)
ETHproductions
@ETHproductions Obrigado! Estou tendo um monte de diversão com Japt :)
Oliver
1

05AB1E , 20 bytes

9Ývy7L×})˜ïD¹-ÄWQÏ{¬

Experimente online!

9Ý                   # Push 0..9
  vy7L×})˜           # For each digit, 0-9, push 1-7 copies of that number.
          ïD         # Convert to integers, dupe the list.
            ¹        # Push original input (n).
             -Ä      # Push absolute differences.
               WQ    # Get min, push 1 for min indices.
                 Ï{¬ # Push indices from original array that are the min, sort, take first.
Urna de polvo mágico
fonte
99 é certamente mais preguiçoso que 111, pois requer apenas dois pressionamentos de botão.
Adám 12/01/19
@ Adám é justo, acrescentou o comando principal.
Magic Octopus Urn
1

Mathematica, 56 bytes

Min@Nearest[##&@@@Table[d(10^n-1)/9,{n,0,6},{d,0,9}],#]&

Função pura com o primeiro argumento #, funciona para entradas até 10^6.

Para um número inteiro não negativo ne um dígito d, 10^n-1 = 99...9( 9repetidas nvezes), assim d(10^n-1)/9 = dd...d( drepetidas nvezes). Cria um Tablede valores para 0 <= n <= 6e 0 <= d <= 9, em seguida, achata a tabela, encontra a lista de elementos Nearestpara #e leva o Min.

Acredito que esta versão funcionará para números inteiros arbitrariamente grandes:

Min@Nearest[##&@@@Table[d(10^n-1)/9,{n,0,IntegerLength@#},{d,0,9}],#]&
ngenisis
fonte