数字种族


16

您应该编写一个程序或函数,给出不同的一位正整数的开始顺序,并以轨迹的长度作为输入输出,或者返回数字的结束顺序。

输入[5,1,2,6,7] and 14定义以下种族:

--------------
76215 ->
--------------

比赛规则

  • 赛道回绕,数字可以走多圈。
  • 步骤的顺序是循环的,并且基于起始位置。在我们的例子中5 1 2 6 7 5 1 2 ...
  • 同一位置不能有多个数字。
  • 每个数字digit_value每步都有一个单元格速度。超过一个数字或一个连续的数字块需要多花一步。如果数字没有所需的速度,它将在(一个或多个)数字之前停止。例子:

    [41   ] => [ 1 4 ]  4 overtakes 1
    
    [2 1  ] => [ 21  ]  2 can only move 1 as it can't move 3 to overtake 1
    
    [4 12 ] => [ 412 ]  4 can only move 1 as it can't move 5 to overtake 12     
    
    [   3 ] => [ 3   ]  3 starting a new lap
    
  • 每个数字都必须走digit_value几圈才结束。离开轨道的最后一个单元时,一圈完成。完成的数字将从轨道中删除。

  • 请注意,一个数字可能会通过一个步骤多次到达其起始位置并完成多个圈。

输入值

  • 1..9包含至少一个元素和一个正整数的不同的一位数正整数()列表,大于列表的长度,即轨道的长度。

输出量

  • 以任何明确的格式按顺序排列的数字列表。

例子

直观的输入示例 starting_order = [5,9,2] and length = 6

295   | Start position
29   5| digit 5 moves
2  9 5| digit 9 moves, finishing lap #1
  29 5| digit 2 moves
 529  | digit 5 moves, finishing lap #1
 52  9| digit 9 moves, finishing lap #2
 5  29| digit 2 moves
   529| digit 5 moves
 9 52 | digit 9 moves, finishing laps #3 and #4
29 5  | digit 2 moves, finishing lap #1
29   5| digit 5 moves
2  9 5| digit 9 moves, finishing lap #5
  29 5| digit 2 moves
 529  | digit 5 moves, finishing lap #2
 52  9| digit 9 moves, finishing lap #6
 5  29| digit 2 moves
   529| digit 5 moves
 9 52 | digit 9 moves, finishing laps #7 and #8
 9 5  | digit 2 moves, finishing lap #2 --> remove 2 from the track
59    | digit 5 moves, finishing lap #3
5     | digit 9 moves, finishing lap #9 --> remove 9 from the track
     5| digit 5 moves
    5 | digit 5 moves, finishing lap #4
      | digit 5 moves, finishing lap #5 --> remove 5 from the track
------
Finish order: 2 9 5

格式范例 Input => Output

[3], 2  =>  [3]

[9, 5], 3  =>  [9, 5]

[5, 9, 2], 6  =>  [2, 9, 5]

[5, 9, 2], 10  =>  [5, 9, 2]

[5, 7, 8, 1, 2], 10  =>  [1, 5, 7, 8, 2]

[5, 1, 6, 8, 3, 2], 17  =>  [1, 6, 8, 2, 3, 5]

[1, 2, 3, 7, 8, 9], 15  =>  [1, 7, 8, 9, 2, 3]

[9, 8, 7, 3, 2, 1], 15  =>  [8, 7, 9, 1, 2, 3]

[1, 2, 3, 4, 5, 6, 7, 8, 9], 20  =>  [1, 2, 3, 4, 5, 6, 7, 8, 9]

[9, 8, 7, 6, 5, 4, 3, 2, 1], 20  =>  [8, 7, 5, 9, 6, 1, 2, 4, 3]

这是代码高尔夫球,因此最短的条目将获胜。


大概输入数组不能有重复的元素吗?看起来是这样,但我看不到该条件明确说明。
安德鲁

@Andrew是的,不能有任何重复的数字。编辑了问题。谢谢。
randomra'5

对于测试用例6(长度= 17),我得到的结果略有不同(最后两位倒置)。我想知道我的错误在哪里。我的比赛记录是这样。您能否提供您的信息,以便我找出并找出错误?
克里斯蒂安·卢帕斯库

@ w0lf 此处记录日志差异。在派生开始的1完成后,跳过以6进行的移动。(请注意,我的日志中包含从轨道中删除之前的数字,而您的日志中没有。)
Randomra

Answers:


3

红宝石229236

这个函数有两个参数:代表数字的数组和代表轨道长度的int。它返回一个数组,表示数字完成比赛的顺序。

F=->d,l{
i=0
t=d.map{|x|[x,d.size-(i+=1)]}
r=[]
d.cycle.map{|n|
t==[]&&break
(c=t.find{|x,_|x==n})&&(s=n
w=c[1]
o=p
(a=(t-[c]).map{|_,p|p%l}
s-=1;w+=1
a&[w%l]==[]?(o=p;c[1]=w):o||s-=o=1)while s>0
c[1]>=n*l&&(t.delete c;r<<n))}
r}

在线测试:http//ideone.com/KyX5Yu

编辑:找出一些技巧来保存更多字符。

非高尔夫版本:

F=->digits,length{
  digit_positions = digits.map.with_index{|d,i|[d,digits.size-i-1] }

  result = []

  digits.cycle.map{|n|
    break if digit_positions==[]
    crt = digit_positions.find{|x,_|x==n}
    next unless crt

    steps_left = n
    pos = crt[1]
    taking_over = false

    while steps_left > 0
      other_pos = (digit_positions-[crt]).map{|_,p|p%length}

      steps_left-=1
      pos += 1

      if other_pos.include? (pos%length)
        steps_left -= 1 unless taking_over
        taking_over = true
      else
        taking_over = false
        crt[1] = pos
      end
    end

    if crt[1] >= n*length
      digit_positions.delete(crt)
      result<<n
    end
  }
  result
}

2

Python 2,345字节

太糟糕了,它不比@ w0lf短,但是whatev。(请注意,大的缩进是制表符,在我发布时会转换为4空格。)

def r(o,l):
 n=len(o);s,t,a,d=dict(zip(o,range(n)[::-1])),-1,{_:0 for _ in o},[]     
 while len(s):
    t+=1;g=o[t%n]
    if g in d:continue
    y,k=s[g],1;i=z=w=0
    for _ in[0]*g:
     i+=1;m=y+i;e,p=m%l,m/l
     if-~a[g]+w>=g<d>m>=l:a[g]+=1;del s[g];d+=[g];break
     if e in s.values()and e!=y:i-=k;k=0
     else:k,s[g],(w,z)=1,e,[(w,z),(z,p)][z<p]
    a[g]+=z
 print d

0

这是我神奇的填充代码

C (457 430b)

int v(int*M,int m){
int i,n,c,d,e=32,f=48,u=0,g=10,h,k,r,l=m,j;char a,*b=&a,*B,V[m];
for (i=0;u<m*m*m;i=(++u%m),*B=*b=(u<=l)?*b:e,b=B=&a)
printf("%c%c",0*(V[i]=(u<l?u>=(r=l-sizeof(M)/4)?M[u-r]+f:e:V[i])),((((V[c=(((V[i]=u<l?e:V[i])-f)/10<u/m)?j>=0&h<i|((h=(j=strchr(V+((k=(m+(d=(i-(V[i]-f)%g+1)))%m)),e)-V)<0?(int)(strchr(V,e)-V):(int)j)>=k)*(k>i)?h:m :m])=((V[c]==e)?(*(b=V+i)+(d<0)*g):V[c])))-f)%11==0?(*(B=V+c)-f)%g+f:0);
getch();
}

注意:它需要更多的改进...

编辑:代码缩短了...-sizeof(int)= 4,function = v,仍然保留一些变量来代替do。


我的C很生锈,但是那些调用sizeof似乎可以用幻数代替。也许它不那么便携,但是,嘿,这就是代码高尔夫。
DLosc 2015年

您的代码似乎长453个字符,而不是457个字符。此外,我认为您可以通过删除不必要的空格并为函数指定一个较短的名称来进一步缩短代码长度。
Cristian Lupascu 2015年

非常感谢提出建议,但对我而言重要的是,我成功地将整个程序包装在两个函数中,分别是loop和printf,这是我遇到的唯一缺陷,程序继续打印空字符而不是nils。但是如果我们淘汰掉那些无能为力的虚假数字,比赛仍然可以正常结束
Abr001am'5

Iirc变量默认为int。因此:v(int*M,int m){e=32;f=48;u=0;l=m;char a,...而且,几乎所有空白都是不必要的;,V[m];for(i=0;... )printf(... );getch();}
wizzwizz4
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.