RTA (Reverse-Then-Add) root of a number


22

Sekwencja odwrotnego dodawania (RTA) to sekwencja uzyskana przez dodanie liczby do jej odwrotnej strony i powtórzenie procesu na wyniku. Na przykład

5+5=1010+01=1111+11=2222+22=44 ...

Zatem sekwencja RTA 5 zawiera 10, 11, 22, 44, 88, 176 itd.

RTA pierwiastek z szeregu jest najmniejszą liczbą, która jest albo równa n lub umożliwia podniesienie do n , w swojej sekwencji RTA.nnn

Na przykład 44 znajduje się w sekwencji RTA wynoszącej 5, 10, 11, 13, 22, 31 itd. Z nich 5 jest najmniejszą, a zatem RTAroot (44) = 5.

72 nie jest częścią sekwencji RTA jakiejkolwiek liczby, a zatem jest uważany za swój własny pierwiastek RTA.

Dane wejściowe to dodatnia liczba całkowita w zakresie, który Twój język może oczywiście obsługiwać.

Dane wyjściowe są pierwiastkiem RTA podanej liczby, jak zdefiniowano powyżej.

Przypadki testowe

Input
Output

44
5

72
72

132
3

143
49

1111
1

999
999

Powiązany OEIS: A067031 . Wyjście będzie liczbą z tej sekwencji.

Odpowiedzi:


13

Perl 6 , 45 44 bajtów

->\a{first {a∈($_,{$_+.flip}...*>a)},1..a}

Wypróbuj online!

Wyjaśnienie:

->\a{                                    }  # Anonymous code block
->\a     # That takes a number a
     first  # Find the first element
                                     1..a  # In the range 1 to a
           {                       },    # Where
            a       # a is an element of
              (             ...   )  # A sequence defined by
               $_,  # The first element is the number we're checking
                  {$_+.flip}  # Each element is the previous element plus its reverse
                               *>$a  # The last element is larger than a

5
Elipsa Perla 6 staje się coraz bardziej magiczna za każdym razem, gdy ją spotykam. Ta specyfikacja sekwencji oparta na lambda to świetny pomysł!
Sundar - Przywróć Monikę

@sundar, ta składnia była w rzeczywistości jednym z głównych powodów, dla których przeszedłem do Perla 6. (i dlaczego po pewnym czasie stał się moim ulubionym językiem)
Ramillies

7

Brachylog , 24 22 bajtów

{~{ℕ≤.&≜↔;?+}{|↰₁}|}ᶠ⌋
  • 2 bajty dzięki sundarowi zauważającemu, że mam {{a}}

Wyjaśnienie

                --  f(n):
                --      g(x):
 {              --          h(y):
  ~             --              get z where k(z) = y
   {            --              k(z):
    ℕ≤.         --                  z>=0 and z<=k(z) (constrain so it doesn't keep looking)
    &≜          --                  label input (avoiding infinite stuff)
      ↔;?+      --                  return z+reverse(z)
   }            --
    {           --                  
     |↰₁        --              return z and h(z) (as in returning either)
    }           --                  
  |             --          return h(x) or x (as in returning either)
 }              --
ᶠ               --      get all possible answers for g(n)
  ⌋             --      return smallest of them

przepraszam za dziwne wyjaśnienie, to najlepsze, co mogłem wymyślić

Wypróbuj online!


1
Korzystanie z {|↰₁}nich jest proste, ale genialne. Dobra robota!
Sundar - Przywróć Monikę

5

Haskell , 59 57 bajtów

-2 bajty dzięki użytkownikowi 1472751 (użycie drugiego untilzamiast listowego zrozumienia & head)!

f n=until((n==).until(>=n)((+)<*>read.reverse.show))(+1)1

Wypróbuj online!

Wyjaśnienie

Spowoduje to ocenę Truedla dowolnego katalogu głównego RTA:

(n==) . until (n<=) ((+)<*>read.reverse.show)

Termin (+)<*>read.reverse.showten jest wersją gry w golfa

\r-> r + read (reverse $ show r)

co dodaje liczbę do siebie odwróconą.

Funkcja ta untilobowiązuje wielokrotnie, (+)<*>read.reverse.showdopóki nie przekroczy naszego celu.

Podsumowując to wszystko, untilzaczynając od 1i dodając 1 (+1), znajdziesz pierwszy RTA-root.

Jeśli nie ma właściwego katalogu głównego RTA n, ostatecznie docieramy do miejsca, w nktórym untilnie stosuje się tej funkcji n<=n.


1
Możesz zapisać 2 bajty, używając również untildla zewnętrznej pętli: TIO
user1472751

5

05AB1E , 7 bajtów

Korzystanie z nowej wersji 05AB1E (przepisanej w Elixir).

Kod

L.ΔλjÂ+

Wypróbuj online!

Wyjaśnienie

L           # Create the list [1, ..., input]
 .Δ         # Iterate over each value and return the first value that returns a truthy value for:
   λ        #   Where the base case is the current value, compute the following sequence:
     Â+     #   Pop a(n - 1) and bifurcate (duplicate and reverse duplicate) and sum them up.
            #   This gives us: a(0) = value, a(n) = a(n - 1) + reversed(a(n - 1))
    j       #   A λ-generator with the 'j' flag, which pops a value (in this case the input)
            #   and check whether the value exists in the sequence. Since these sequences will be 
            #   infinitely long, this will only work strictly non-decreasing lists.

Czekaj .. jma szczególne znaczenie w środowisku rekurencyjnym? Wiedziałem tylko o przejściu i o λsobie w środowisku rekurencyjnym. Czy jest jeszcze coś więcej j? EDYCJA: Ach, widzę też coś £w kodzie źródłowym . Gdzie jest używany?
Kevin Cruijssen

1
@KevinCruijssen Tak, są to flagi używane w środowisku rekurencyjnym. jzasadniczo sprawdza, czy wartość wejściowa znajduje się w sekwencji. £upewnia się, że zwraca pierwsze n wartości sekwencji (takie same jak λ<...>}¹£).
Adnan

3

Galaretka , 12 11 bajtów

ṚḌ+ƊС€œi¹Ḣ

9991111

Dzięki @JonathanAllan za grę w golfa na 1 bajcie!

Wypróbuj online!

Jak to działa

ṚḌ+ƊС€œi¹Ḣ  Main link. Argument: n

      €      Map the link to the left over [1, ..., n].
    С         For each k, call the link to the left n times. Return the array of k
               and the link's n return values.
   Ɗ           Combine the three links to the left into a monadic link. Argument: j
Ṛ                Promote j to its digit array and reverse it.
 Ḍ               Undecimal; convert the resulting digit array to integer.
  +              Add the result to j.
       œi¹   Find the first multindimensional index of n.
          Ḣ  Head; extract the first coordinate.

3

Rubin, 66 57 bajtów

f=->n{(1..n).map{|m|m+(m.digits*'').to_i==n ?f[m]:n}.min}

Wypróbuj online!

Funkcja rekurencyjna, która wielokrotnie „cofa” operację RTA, dopóki nie osiągnie liczby, której nie może wytworzyć, a następnie zwraca minimum.

Zamiast używania filter, który jest długi, zamiast tego po prostu mapprzekraczam zakres od 1 do liczby. Dla każdego m w tym zakresie, jeśli m + rev (m) jest liczbą, wywołuje funkcję rekurencyjnie na m ; w przeciwnym razie zwraca n . To eliminuje potrzebę a filteri daje nam podstawowy przypadek f (n) = n za darmo.

Najważniejsze to zapisywanie bajtu za pomocą Integer#digits:

m.to_s.reverse.to_i
(m.digits*'').to_i
eval(m.digits*'')

Ostatni byłby o bajt krótszy, ale niestety Ruby analizuje liczby zaczynające się 0na ósemkowe.



2

Pyth , 12 bajtów

fqQ.W<HQ+s_`

Sprawdź pakiet testowy!

Zaskakująco szybki i wydajny. Wszystkie uruchomione jednocześnie testy trwają krócej niż 2 sekundy.

Jak to działa

fqQ.W<HQ+s_` – Full program. Q is the variable that represents the input.
f            – Find the first positive integer T that satisfies a function.
   .W        – Functional while. This is an operator that takes two functions A(H)
               and B(Z) and while A(H) is truthy, H = B(Z). Initial value T.
     <HQ     – First function, A(H) – Condition: H is strictly less than Q.
        +s_` – Second function, B(Z) – Modifier.
         s_` – Reverse the string representation of Z and treat it as an integer.
        +    – Add it to Z.
             – It should be noted that .W, functional while, returns the ending
               value only. In other words ".W<HQ+s_`" can be interpreted as
               "Starting with T, while the current value is less than Q, add it
               to its reverse, and yield the final value after the loop ends".
 qQ          – Check if the result equals Q.

2

05AB1E , 13 bajtów

LʒIFDÂ+})Iå}н

Wypróbuj online!

Wyjaśnienie

L               # push range [1 ... input]
 ʒ         }    # filter, keep elements that are true under:
  IF   }        # input times do:
    D           # duplicate
     Â+         # add current number and its reverse
        )       # wrap in a list
         Iå     # check if input is in the list
            н   # get the first (smallest) one

Mądry! Wiem, że moja 21-bajtowa wersja była już o wiele za długa (która grałem w golfa do 16 przy takim samym podejściu), ale tak naprawdę nie mogłem znaleźć sposobu, aby zrobić to krócej. Nie mogę uwierzyć, że nie pomyślałem o użyciu głowy po filtrze. Próbowałem użyć indeksu pętli + 1 lub global_counter..>.>
Kevin Cruijssen

2

JavaScript (ES6), 61 bajtów

n=>(g=k=>k-n?g(k>n?++x:+[...k+''].reverse().join``+k):x)(x=1)

Wypróbuj online!

Skomentował

n =>                        // n = input
  (g = k =>                 // g() = recursive function taking k = current value
    k - n ?                 //   if k is not equal to n:
      g(                    //     do a recursive call:
        k > n ?             //       if k is greater than n:
          ++x               //         increment the RTA root x and restart from there
        :                   //       else (k is less than n):
          +[...k + '']      //         split k into a list of digit characters
          .reverse().join`` //         reverse, join and coerce it back to an integer
          + k               //         add k
      )                     //     end of recursive call
    :                       //   else (k = n):
      x                     //     success: return the RTA root
  )(x = 1)                  // initial call to g() with k = x = 1

2

05AB1E , 21 16 15 bajtów

G¼N¹FÂ+йQi¾q]¹

-1 bajt dzięki @Emigna .

Wypróbuj online.

Wyjaśnienie:

G               # Loop `N` in the range [1, input):
 ¼              #  Increase the global_counter by 1 first every iteration (0 by default)
 N              #  Push `N` to the stack as starting value for the inner-loop
  ¹F            #  Inner loop an input amount of times
    Â           #   Bifurcate (short for Duplicate & Reverse) the current value
                #    i.e. 10 → 10 and '01'
     +          #   Add them together
                #    i.e. 10 and '01' → 11
      Ð         #   Triplicate that value
                #   (one for the check below; one for the next iteration)
       ¹Qi      #   If it's equal to the input:
          ¾     #    Push the global_counter
           q    #    And terminate the program
                #    (after which the global_counter is implicitly printed to STDOUT)
]               # After all loops, if nothing was output yet:
 ¹              # Output the input

Wydruk nie jest potrzebny z powodu drukowania niejawnego.
Emigna,

1

Węgiel drzewny , 33 bajty

Nθ≔⊗θηW›ηθ«≔L⊞OυωηW‹ηθ≧⁺I⮌Iηη»ILυ

Wypróbuj online! Link jest do pełnej wersji kodu. Wyjaśnienie:

Nθ

q

≔⊗θη

2qh

W›ηθ«

h>q

≔L⊞Oυωη

uh

W‹ηθ

h<q

≧⁺I⮌Iηη

hh

»ILυ

u


1

MATL , 17 bajtów

`@G:"ttVPU+]vG-}@

Wypróbuj online!

Wyjaśnienie

`         % Do...while loop
  @       %   Push iteration index, k (starting at 1)
  G:"     %   Do as many times as the input
    tt    %     Duplicate twice
    VPU   %     To string, reverse, to number
    +     %     Add
  ]       %   End
  v       %   Concatenate all stack into a column vector. This vector contains
          %   a sufficient number of terms of k's RTA sequence
  G-      %   Subtract input. This is used as loop condition, which is falsy
          %   if some entry is zero, indicating that we have found the input
          %   in k's RTA sequence
}         % Finally (execute on loop exit)
  @       %   Push current k
          % End (implicit). Display (implicit)

1
Na marginesie, użyłem MATL do wygenerowania wyników przypadków testowych, używając tej 31-bajtowej wersji: :!`tG=~yV2&PU*+tG>~*tXzG=A~]f1) Wypróbuj online!
Sundar - Przywróć Monikę

1

Java 8, 103 bajty

n->{for(int i=0,j;;)for(j=++i;j<=n;j+=n.valueOf(new StringBuffer(j+"").reverse()+""))if(n==j)return i;}

Wypróbuj online.

Wyjaśnienie:

n->{                // Method with Integer as both parameter and return-type
  for(int i=0,j;;)  //  Infinite loop `i`, starting at 0
    for(j=++i;      //  Increase `i` by 1 first, and then set `j` to this new `i`
        j<=n        //  Inner loop as long as `j` is smaller than or equal to the input
        ;           //    After every iteration:
         j+=        //     Increase `j` by:
            n.valueOf(new StringBuffer(j+"").reverse()+""))
                    //     `j` reversed
     if(n==j)       //   If the input and `j` are equal:
       return i;}   //    Return `i` as result

Odwracanie arytmetyczne liczby całkowitej jest o 1 bajt dłuższe ( 104 bajty ):

n->{for(int i=0,j,t,r;;)for(j=++i;j<=n;){for(t=j,r=0;t>0;t/=10)r=r*10+t%10;if((j+=r)==n|i==n)return i;}}

Wypróbuj online.


1

C (gcc) , 120 100 99 bajtów

f(i,o,a,b,c,d){for(a=o=i;b=a;o=i/b?a:o,a--)for(;b<i;b+=c)for(c=0,d=b;d;d/=10)c=c*10+d%10;return o;}

Wypróbuj online!

Biorąc pod uwagę dane wejściowe i, sprawdza każdą liczbę całkowitą od i0 do sekwencji zawierającej i.

  • i jest wartością wejściową
  • o to wartość wyjściowa (minimalny znaleziony dotychczas root)
  • a jest sprawdzaną bieżącą liczbą całkowitą
  • bjest bieżącym elementem asekwencji
  • ci dsłużą do dodawania bna odwrocie

Kompilacja z -DL=forzaoszczędziłaby Ci 2 bajty.

Zdrap to; źle postępować z matematyką.

Można jednak zwrócić wartość wyjściową ze i=o;jeśli używasz -O0, oszczędzając 5 bajtów.

1

Japt , 16 15 11 bajtów

@ÇX±swÃøU}a

Spróbuj

@ÇX±swÃøU}a     :Implicit input of integer U
@        }a     :Loop over the positive integers as X & output the first that returns true
 Ç              :  Map the range [0,U)
  X±            :    Increment X by
    sw          :    Its reverse
      Ã         :  End map
       øU       :  Contains U?


0

C (gcc) , 89 bajtów

Sprawdzam każdą sekwencję w [1, n ) aż do uzyskania dopasowania; zero ma specjalne znaczenie, ponieważ nie kończy się.

j,k,l,m;r(i){for(j=k=0;k-i&&++j<i;)for(k=j;k<i;k+=m)for(l=k,m=0;l;l/=10)m=m*10+l%10;j=j;}

Wypróbuj online!

Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.