Hasilkan nilai malas

25

Terkait: Programkan oven microwave saya . Terinspirasi oleh Hasilkan input microwave malas .

Nilai lazy dari bilangan bulat non-negatif N adalah yang terkecil dari bilangan bulat yang paling dekat dengan N sementara semua digit mereka identik.

Kembali (dengan cara apapun) nilai malas yang diberikan (dengan cara apapun) N .

Nbilangan bulat terbesar yang diwakili bahasa Anda dalam bentuk non-eksponen secara default. 1000000 (Banyak solusi menarik hilang karena persyaratan yang terlalu tinggi ini.)

Kasus uji:

   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 

Kolega yang bersangkutan membuktikan bahwa tidak akan ada ikatan: Kecuali untuk 9/11, 99/111, dll. Yang satu lebih pendek dari yang lain, dua jawaban yang valid berturut-turut selalu jarak yang aneh, sehingga tidak ada bilangan bulat yang bisa tepat berjarak sama dari mereka.

Adám
sumber

Jawaban:

15

JavaScript (ES6), 31 byte

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

Langsung menghitung nilai malas untuk masing-masing n.

Sunting: Hanya berfungsi hingga 277777778 karena keterbatasan tipe integer JavaScript. Versi alternatif:

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

35 byte, bekerja hingga 16666666667.

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

38 byte, bekerja hingga 944444444444443. Tapi itu masih jauh dari 2 53 yaitu 9007199254740992.

Neil
sumber
@ user81655 Saya telah menambahkan beberapa versi alternatif dengan batasan numeriknya.
Neil
1
Saya tidak dapat menggunakan algoritme ini Number.MAX_SAFE_INTEGERkarena keduanya 8e16 - 1dinyatakan sebagai 8e16. Sayangnya, sepertinya satu-satunya cara adalah mengkodekan hasil maksimal. +1 tetap saja.
user81655
@ user81655 Saya menurunkan batas atas untuk memungkinkan solusinya.
Adám
Membuatmu 10k @Neil, suka golf!
NiCk Newman
1
@NiCkNewman Woohoo! Terima kasih!
Neil
5

Jelly, 16 byte

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

Cobalah online!

Bagaimana itu bekerja

Ḥ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
sumber
4

Oracle SQL 11.2, 200 byte

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;

Tidak bermain golf

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
sumber
3

Pyth - 26 byte

Jawaban ini tidak selalu mengembalikan nilai terkecil dalam dasi, tetapi itu tidak ada dalam spesifikasi, jadi tunggu klarifikasi tetap selama 3 byte.

hSh.g.a-kQsmsM*RdjkUTtBl`Q

Test Suite .

Maltysen
sumber
3

Pyth, 16 byte

haDQsM*M*`MTSl`Q

Cobalah online: Demonstrasi atau Test Suite

Penjelasan:

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
sumber
3

MATL , 25 byte

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

Menggunakan kekuatan kasar, jadi mungkin perlu beberapa saat untuk jumlah besar.

Cobalah 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
sumber
3

Perl, 32

Berdasarkan solusi JavaScript yang indah dari Neil.

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

Mulai gagal pada 5e15

Ton Hospel
sumber
2

Mathematica, 122 byte

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]&]

Fungsi bernama x.

CalculatorFeline
sumber
2

JavaScript (ES6), 59 byte

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

Solusi Rekursif (56 byte)

Ini sedikit lebih pendek tetapi tidak berfungsi n > 1111111110karena ukuran tumpukan panggilan maksimum terlampaui, sehingga secara teknis tidak valid.

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

Penjelasan

Iterasi melalui setiap nomor malas hingga mencapai yang pertama yang lebih besar dari n, kemudian bandingkan ndengan angka ini dan sebelumnya untuk menentukan hasilnya.

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>

pengguna81655
sumber
Saya menurunkan batas atas untuk memungkinkan solusi Anda.
Adám
2

Japt , 18 byte

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

Cobalah online!

Berdasarkan teknik Neil

Solusi non-bersaing :

*9+4 h /9|0
Oliver
sumber
1
Dan sekarang Anda dapat melakukan *9+4 h /9|0:-)
ETHproduk
@ ETHproduksi Terima kasih! Saya bersenang-senang dengan Japt :)
Oliver
1

05AB1E , 20 byte

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

Cobalah 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.
Guci Gurita Ajaib
sumber
99 pasti lebih malas dari 111, karena hanya membutuhkan dua penekanan tombol.
Adám
@ Adám cukup adil, menambahkan perintah kepala.
Magic Octopus Mm
1

Mathematica, 56 byte

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

Fungsi murni dengan argumen pertama #, berfungsi untuk input hingga 10^6.

Untuk bilangan bulat negatif ndan digit d,10^n-1 = 99...9 ( waktu 9berulang n), jadi d(10^n-1)/9 = dd...d( waktu dberulang n). Membuat Tablenilai untuk 0 <= n <= 6dan 0 <= d <= 9, lalu meratakan tabel, menemukan daftar elemen Nearestke #dan mengambil Min.

Saya percaya versi ini akan bekerja untuk bilangan bulat besar yang sewenang-wenang:

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