按数字拆分,按字符串连接,重复


14

考虑以下过程:

  1. 以一个非负整数N.
    27

  2. 将其拆分为整数N - floor(N/2)floor(N/2)(“较大”和“较小”的一半)并按该顺序写入。
    例如27成为14 13

  3. 删除空间以将整数连接成一个更大的新整数。
    例如14 13成为1413

  4. 重复步骤2和3所需的次数。
    例如1413→交通707 706→交通707706→交通353853 353853→交通353853353853→交通...

这项挑战就是要做到这一点,但并不总是在基础10中。

挑战

编写一个包含三个数字B,N和S的程序:

  • B是2到10的整数,它是N的底数(二进制到十进制)。

  • N是非负整数,适用于拆分重新合并过程。为了使用户输入更容易,它以B 的字符串而不是整数给出。

  • S是一个非负整数,它是重复拆分-重新加入过程的次数。

程序的输出是经过S个拆分连接过程后,基数B中N的字符串表示形式。

当S 0为时,不进行拆分,因此输出始终为N。

当N 0为时,所有拆分均具有形式0 00再次减小为,因此输出始终为0

例子

  • B = 10, N = 27, S = 11413
  • B = 10, N = 27, S = 2707706
  • B = 9, N = 27, S = 11413
  • B = 9, N = 27, S = 2652651
  • B = anything, N = anything, S = 0N
  • B = anything, N = 0, S = anything0

表用于与N的所有B = 1为S = 07

B       S=0     S=1     S=2     S=3         S=4             S=5                 S=6                                 S=7
2       1       10      11      101         1110            111111              10000011111                         10000100001000001111
3       1       10      21      1110        202201          101101101100        1201201201212012012011              212100212102121002121212100212102121002120
4       1       10      22      1111        223222          111311111311        2232222232322322222322              11131111131311311111311113111113131131111131
5       1       10      32      1413        432431          213441213440        104220331443104220331442            2433241322130211014044424332413221302110140443
6       1       10      33      1514        535535          245550245545        122553122553122553122552            4125434125434125434125441254341254341254341254
7       1       10      43      2221        11111110        40404044040403      2020202202020220202022020201        10101011010101101010110101011010101101010110101011010100
8       1       10      44      2222        11111111        44444454444444      2222222622222222222226222222        11111113111111111111131111111111111311111111111113111111
9       1       10      54      2726        13581357        62851746285173      3142536758708231425367587081        15212633743485606571782880411521263374348560657178288040
10      1       10      55      2827        14141413        70707077070706      3535353853535335353538535353        17676769267676676767692676771767676926767667676769267676

表与用于S =随机N的所有乙03

B       S=0     S=1         S=2                 S=3
2       11011   11101101    11101111110110      11101111110111110111111011
3       2210    11021101    20102012010200      1001212100121210012121001211
4       1113    230223      112112112111        2302302302323023023022
5       101     2323        11341134            31430423143042
6       120     4040        20202020            1010101010101010
7       134     5252        24612461            1230456412304564
8       22      1111        445444              222622222622
9       4       22          1111                505505
10      92      4646        23232323            1161616211616161

细节

  • 通过标准输入或命令行输入。输出到标准输出。
  • 您可以编写一个采用B,N和S并正常打印结果或将其返回(作为字符串)的函数,而不是程序。
  • B,N和S可以采用任何顺序。
  • 所有产生十进制值低于2 32的输出的输入都应工作。
  • N以通常的方式表示。即最重要的数字在前,除了被写入的零本身外,没有前导零0。(输出00代替0无效。)
  • 以字节为单位的最短代码获胜。

当且仅当你喜欢我的挑战,考虑给予砌块建筑成群的僵尸!一些爱 :)


我不知道是否真的需要排行榜。
orlp 2015年

5
@orlp可能不是。如果有很多答案,我将其删除并放回去。我只是想炫耀我和Optimizers Stack Snippet的恶作剧
加尔文的爱好2015年

Answers:


5

Pyth,21 19字节

vujksmjldQc2UiGQvwz

接受格式为的输入N\nB\nS。在线尝试:演示测试工具

说明

                      implicit: z = 1st input (N)
                                Q = 2nd input evaluated (B)
 u              vwz   reduce z (evaluated 3rd input) times by:
             iGQ         convert string from base Q to base 10
            U            create a range [0, 1, ..., ^-1]
          c2             split into 2 lists (lengths are N-[N/2] and [N/2])
     m                   map each list d to:
       ld                   their length
      j  Q                  in base Q
    s                    join both lists
  jk                     join the numbers by ""
v                     convert string to int (getting rid of leading zeros)

5

Pyth,29 21字节

jku+j-JiGQK/J2QjKQvwz

真正简单的实现。

以以下格式在stdin上输入:

N
B
S

这给了错误的输出00N=0
雅库布2015年

5

Mathematica,101个字节

Nest[a~Function~(b=FromDigits)[Through@((c=IntegerString)@*Ceiling<>c@*Floor)[a/2],#],#2~b~#,#3]~c~#&

使用一些Through技巧来应用天花板和地板功能。只是忽略错误。


5

CJam,24个字节

q~:B;{:~Bb_)\]2f/Bfbs}*i

在这里测试。将输入作为"N" S B

说明

q~                       e# Read an eval input.
  :B;                    e# Store the base in B and discard it.
     {               }*  e# Repeat S times.
      :~                 e# Turn the string N into an array of digits.
        Bb               e# Interpret as base B.
          _)\            e# Duplicate and increment. Swap order.
             ]2f/        e# Wrap them in an array and (integer-)divide both by 2.
                 Bfb     e# Convert both to base B.
                    s    e# Flatten into a single string.
                       i e# Convert to an integer to fix the N = 0 case.

"0" 1 9输出00。我尝试打高尔夫球:q~:B;{:~Bb,2/z:,Bfbs}*,但也无效,因为它改为输出空字符串。
jimmy23013

最后的一个i会照顾00。您可以将替换2/:I-I]为返回字节)\]2f/
丹尼斯

3

JavaScript(ES6)78 79

递归函数。运行代码片段进行测试(仅适用于Firefox)

编辑保存的1个字节thx @DocMax

F=(b,n,s,S=x=>x.toString(b),m=parseInt(n,b))=>m*s?F(b,S(-~m>>1)+S(m>>1),s-1):n

// Ungolfed

U=(b,n,s)=>
{
  var S=x=>x.toString(b) // function to convert in base b
  var m=parseInt(n,b) // string in base b to integer
  if (m==0 || s==0)
    return n
  else  
    return F(b,S((m+1)>>1) + S( m>>1 ),s-1)
}

// Test
test=[
  {B: 10, N: '0', S:3, K: '0' }, {B: 10, N: '27', S: 1, K: '1413' }, {B: 10, N: '27', S: 2, K: '707706' }, {B: 9, N: '27', S: 1, K: '1413' }, {B: 9, N: '27', S: 2, K: '652651' }
];

test2=[[2, '11011', '11101101', '11101111110110', '11101111110111110111111011'],[3, '2210', '11021101', '20102012010200', '1001212100121210012121001211'],[4, '1113', '230223', '112112112111', '2302302302323023023022'],[5, '101', '2323', '11341134', '31430423143042' ]  ,[6, '120', '4040', '20202020', '1010101010101010'],[7, '134', '5252', '24612461', '1230456412304564'],[8, '22', '1111', '445444', '222622222622'],[9, '4', '22', '1111', '505505'],[10, '92', '4646', '23232323', '1161616211616161' ]
]
test2.forEach(r=>test.push(
  {B:r[0],N:r[1],S:1,K:r[2]}, {B:r[0],N:r[1],S:2,K:r[3]}, {B:r[0],N:r[1],S:3,K:r[4]}
))  

test.forEach(t => (
  r=F(t.B, t.N, t.S), 
  B.innerHTML += '<tr><th>'+(r==t.K?'Ok':'Failed')
      +'</th><td>'+t.B +'</td><td>'+t.N
      +'</td><td>'+t.S +'</td><td>'+r +'</td><td>'+t.K +'</td></tr>'
))
th,td { font-size: 12px; padding: 4px; font-family: helvetica }
<table><thead><tr>
  <th>Test<th>B<th>N<th>S<th>Result<th>Check
  </tr></thead>
  <tbody id=B></tbody>
</table>


我真的很喜欢您成功的证明多么详尽。另外,您可以通过替换m&&s为保存1 m*s
DocMax 2015年

1
@DocMax这是一个真正有用的单元测试。打高尔夫球时破坏所有东西太容易了。
edc65

1

ECMAScript 6,90字节

var f=(B,N,S)=>((n,s)=>S?f(B,s(n+1>>1)+s(n>>1),S-1):s(n))(parseInt(N,B),x=>x.toString(B))

使用变量定义递归函数并不是一种很好的样式,但这是我在ECMAScript 6中可以想到的最短的代码。

"00" => "0"正确处理极端情况会浪费三个字节(s(n)而不是N)。

尝试一下,你可以用巴贝尔的REPL:复制/粘贴,像这样的代码,例如打印调用结果:console.log(f(9, "27", 2))


1

普通Lisp-113个字符

(lambda(b n s)(dotimes(i s)(setf n(format ()"~vR~vR"b (- #1=(parse-integer n :radix b)#2=(floor #1# 2))b #2#)))n)

不打高尔夫球

(lambda(b n s)
  (dotimes(i s)
    (setf n (format () "~vR~vR" b (- #1=(parse-integer n :radix b)
                                     #2=(floor #1# 2))
                                b #2#)))
  n)
  • ~vR格式指令输出在基础整数v,其中v作为一个参数被设置format
  • parse-integer接受:radix用于从指定基数转换的参数。
  • #1=#1#(分别分配和使用)是阅读器变量,它们可以共享公用的子表达式。展开后,它们给出以下代码:

    (lambda (b n s)
      (dotimes (i s)
        (setf n
                (format nil "~vr~vr" b
                        (- (parse-integer n :radix b)
                           (floor (parse-integer n :radix b) 2))
                        b (floor (parse-integer n :radix b) 2))))
      n)

0

,27字节

Lcb:+J[(bFB:a)%2i]+b//2TBab

将基数,整数和重复次数作为命令行参数。该算法很简单,但是使用了一些有趣的语言功能:

                             a, b, c initialized from cmdline args, and i = 0 (implicit)
Lc                           Do c times:
        bFB:a                Convert b from base a to decimal and assign back to b
      [(     )%2i]           Construct a list containing b%2 and 0 (using i to avoid
                               scanning difficulties)
                  +b//2      Add floor(b/2) to both elements of list; the list now contains
                               b-b//2 and b//2
                       TBa   Convert elements of list back to base a
     J                       Join list
    +                        Coerce to number (necessary to turn 00 into plain 0)
  b:                         Assign back to b
                          b  Print b at the end

Pip的标量类型既表示数字又表示字符串,在这里很方便,列表上的逐项操作也是如此;不幸的是,括号和两个字符的运营商FBTB以及//导致没有任何优势。

替代解决方案,没有中间分配,但仍为27个字节:

Lcb:+J[bFBa%2i]+bFBa//2TBab

0

C,245字节

int b,z,n,f,r;c(char*t,n){return n?((z=c(t,n/b)),z+sprintf(t+z,"%d",n%b)):0;}main(){char t[99],*p;gets(t);b=atoi(t);f=n=strtol(p=strchr(t,32)+1,0,b);if(!(r=atoi(strchr(p,32)+1)))f=0;while(r--)n=strtol(t+c(t+c(t,n-n/2),n/2)*0,0,b);puts(f?t:"0");}

这不会赢任何钱,但是做起来很有趣!


0

PHP115 112字节

function($b,$n,$s){while($s--)$n=($c=base_convert)(ceil($n=$c($n,$b,10)/2),10,$b).$c(floor($n),10,$b);return$n;}

在线尝试!

取消高尔夫:

function split_join_repeat( $b, $n, $s ) {
    // repeat S times
    for( $x=0; $x < $s; $x++ ) {
        // convert N from base B to base 10 for arithmetic
        $n = base_convert( $n, $b, 10 );
        // divide and split in base 10, convert back to base B and join
        $n = base_convert( ceil( $n / 2 ), 10, $b ) .
            base_convert( floor( $n / 2 ), 10, $b );
    }
    return $n;
}

输出量

B = 10, N = 27, S = 1   1413
B = 10, N = 27, S = 2   707706
B = 9, N = 27, S = 1    1413
B = 9, N = 27, S = 2    652651

2   1   10  11  101 1110    111111  10000011111 10000100001000001111    
3   1   10  21  1110    202201  101101101100    1201201201212012012011  212100212102121002121212100212102121002120  
4   1   10  22  1111    223222  111311111311    2232222232322322222322  11131111131311311111311113111113131131111131    
5   1   10  32  1413    432431  213441213440    104220331443104220331442    12141204110401030043301214120411040103004330    
6   1   10  33  1514    535535  245550245545    122553122553122553122552    131022143412311313533131022143412311313533  
7   1   10  43  2221    11111110    40404044040403  2020202202020220202022020201    40556522600645213204055652260064521320  
8   1   10  44  2222    11111111    44444454444444  2222222622222222222226222222    76650460747555347665046074755534    
9   1   10  54  2726    13581357    62851746285173  3142536758708231425367587081    4861155667688600048611556676886000  
10  1   10  55  2827    14141413    70707077070706  3535353853535335353538535353    17676769267677271767676926767727

0

Japt,17个字节

_nW o ó ®ÊsWÃq}gV

在线尝试!

以S,N,B的顺序接受输入,其中N作为单例列表。接受没有单例列表的N花费2个字节

说明:

_             }g     #Get the Sth item generated by this function...
                V    #...Starting with N as the 0th item:
 nW                  # Evaluate the previous item as a base B number
    o                # Create a list with that length
      ó              # Divide it into two lists as evenly as possible
        ®   Ã        # For each of those lists:
         Ê           #  Get the length
          sW         #  Convert it to base B
             q       # Join the two strings together

0

第四(gforth),105字节

: f base ! 0 ?do 0. 2swap >number nip 2drop 2 /mod >r i + r> 0 tuck <# #s 2drop #s #> loop type decimal ;

在线尝试!

说明

将基数更改为B,然后在运行S次的循环中:

  • 将字符串转换为数字
  • 将数字分成两半(如果是奇数,则比另一半大)
  • 将两个数字合并成一个字符串

完成后打印字符串,并将基数设置回10(这样我们可以连续运行多次)

代码说明

:f                    \ start a new word definition
  base !              \ set the base to B
  0 ?do               \ loop from 0 to S-1 (runs S times)
    0. 2swap          \ places a double-length 0 on the stack behind the string
    >number           \ converts the string to a number in the current base
    nip 2drop         \ get rid of string remainder and second part of double
    2 /mod            \ get the quotient and remainder of dividing by 2
    >r                \ throw the quotient on the return stack
    i                 \ get a copy of the quotient from the return stack
    +                 \ add quotient and remainder
    r>                \ move quotient from return stack to stack
    0 tuck            \ convert both to double-length numbers
    <#                \ start a pictured numeric output
      #s              \ add entire number to output
      2drop           \ drop empty number
      #s              \ add second number to output
    #>                \ convert output to a string and drop number from stack
  loop                \ end loop
  type                \ print output string
  decimal             \ set base back to 10
;                     \ end word definition
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.