旅行的O


26

世界是五乘五的细胞阵列。它包裹在所有侧面。可以像...

XXXXX
XXXXX
XXOXX
XXXXX
XXXXX

您是O。您喜欢环游世界,并且遵循以下规则(以C为当天):

  • 黄金时期,您会怀旧。返回到昨天开始的地方。
  • 奇怪的日子里,你会想家。如果可能,将水平步移到离家更近的地方,如果可能,将水平步移到离家近的地方。忽略世界包装是为了确定紧密度。
  • 偶数天,您都会感到冒险。向南移动C / 2步。
  • 平常的日子里,您会感到冒险。移到东墙。
  • 斐波那契的日子里,世界向南扩展了一排。
  • 三角天,世界向东扩展一列。

如果要同时应用上述两个或多个规则,请按照列出的顺序应用它们。例如,在一个奇特的黄金日,首先返回到昨天开始的地方,然后再离家更近一步。

您生活在(初始)世界的中心,即位置(2,2),从西北角零索引开始。从第一天开始您的旅程。

输入项

一个整数N。

输出量

您的X和Y坐标在第N天,从西北角零索引,以一个空格分隔。

测试用例及解释

给定输入3,正确的输出为:

2 3

我们可以一次完成这一天。从第1天开始,我们需要执行以下操作:

  1. 奇数,正方形,斐波那契和三角形
  2. 素数,偶数和斐波那契
  3. 素数,奇数,斐波那契和三角形

视觉形式:

     第1天第2天第3天
XXXXX XXXXXX XXXXXX XXXXXXX
XXXXX XXXXXX XXXXXX XXXXXXX
XXOXX-> XXXXOX-> XXXXXX-> XXXOXXX
XXXXX XXXXXX XXOXXX XXXXXXX
XXXXX XXXXXX XXXXXX XXXXXXX
           XXXXXX XXXXXX XXXXXXX
                       XXXXXX XXXXXXX
                                   XXXXXXX

其他测试用例

感谢MartinBüttner参考解决方案(请注意,您应该只输出一个坐标,而不是全部坐标):

Input:  1     2     3     4     5     6     7     8     9     10    11    12    13    14     15    16    17    18    19    20    21    22    23
Output: 4 2   2 3   3 2   6 4   2 2   2 5   2 2   2 6   7 5   7 0   6 4   6 0   5 3   5 10   4 9   9 6   3 8   3 6   2 7   2 6   2 5   2 4   2 4

这是代码高尔夫。提交时间最短者获胜。


6
我需要在O中执行此操作!
kirbyfan64sos

Answers:


4

Pyth,157个 156 153字节

=Z=b5aYA,2 2FNtUhQI&!tPN<1NA@Y_2)Iq*2/N2NA,G%+H/N2b)EL-+b<b2<2bAyM,GH)J@N2Iq/NJJA,tZH)=TU2W<hTNIqNeT=hbBE=TX_T1sT))=J0W!<NJIqN/*JhJ2=hZBE=hJ))aY(GH;jd,GH

您可以在这里尝试。

高尔夫这是一个有趣的问题!我仍然习惯Pyth,但这是一种很棒的语言。


1
欢迎来到佩斯!我马上看到的一种高尔夫球:如果要制作2个元素列表/元组,请使用,-这就是它的用途。
isaacg 2015年

这有高尔夫球thoughout代码更到位- ,(G%+H/N2b),。(GH) (tZH)
isaacg 2015年

12

Haskell,394个字节

z=0<1
p d y c|all((0<).mod d)[2..d-1]=y|z=c
g x=x-signum(x-2)
e d(x,y)h|odd d=(g x,g y)|z=(x,mod(y+div d 2)h)
s d c@(_,y)w|d==(floor$sqrt$fromIntegral d)^2=(w-1,y)|z=c
f d a b m|b>d=m|b==d=(+1)<$>m|z=f d b(a+b)m
d%m@(w,h)|elem d[div(n*n-n)2|n<-[1..d+1]]=(w+1,h)|z=m
i=fst.c
j=snd.c
c d|d<1=((2,2),(5,5))|z=(s d(e d(p d(i$d-2)$i$d-1)$snd$j$d-1)$fst$j$d-1,d%(f d 1 1$j$d-1))
main=readLn>>=print.i

绝对可以优化,也可以在快速检查其正确性之后进行优化 看起来我得到的结果与发布的结果不同。当我有更多时间时,我将返回并更彻底地检查我的代码^^

顺便问好问题!

编辑:考虑到Zgarb提供的宝贵建议,编辑了我的解决方案。现在,它可以完美运行!

EDIT2:感谢nimi,我使代码更小了。我现在也正在检查一个函数而不是两个函数中的偶数和奇数,这会将计数从446个字节减少到414个字节。

EDIT3:从414进一步改进到400字节。感谢nimi再提供2个字节,您着急了!:)

EDIT4:由4个字节以上NIMI :)


2
欢迎来到PPCG!有两个快速提示:0<1比短otherwise,并且0/=mod x y可以缩短为0<mod x y。另外,1==mod(d)2is odd d0==mod(d)2is even d
Zgarb 2015年

@Zgarb不错的花招,在整个代码高尔夫方面,我确实是很新的。如何0<1代替otherwise工作关系吗?
basile-henry,2015年

1
另外,我认为您对三角数的定义是错误的(我假设这在函数中t),因为elem d[1..div(d*d-d)2]对所有人而言都是正确的d > 2
Zgarb 2015年

otherwise只是的另一个名字True
Zgarb 2015年

非常感谢,是的,我尝试过快做三角数...
sile-henry,2015年

5

C,425个 396字节

typedef struct{int x,y,b,r}c;S,p,n;s(d){return(S=sqrt(d))*S==d;}c m(d){if(!d)return(c){2,2,4,4};c q,l=m(d-1);for(p=1,n=d;--n;p=p*n*n%d);if(p&&d>1)q=m(d-2),l.x=q.x,l.y=q.y;if(d%2)l.x-=l.x>2?1:l.x<2?-1:0,l.y-=l.y>2?1:l.y<2?-1:0;else l.y+=d/2,l.y=l.y>l.b?l.y-l.b-1:l.y;if(s(d))l.x=l.r;if(s(5*d*d+4)||s(5*d*d-4))l.b++;if(s(8*d+1))l.r++;return l;}main(i){scanf("%d",&i);printf("%d %d",m(i).x,m(i).y);}

某些方面可以改进,但可以用于测试用例


说明

typedef struct {
    int x,y,b,r
} c; //c will hold the information for each day

//determines if a number is a perfect square
S,p,n;
s(d) {
    return (S=sqrt(d))*S==d;
}

c m(d) {
    if(!d)
        return (c){2,2,4,4}; //returns the initial information if the day is 0

    c q,l=m(d-1); //gets the information for the previous day
    for (p=1,n=d;--n;p=p*n*n%d); //tests if the number is prime

    if (p&&d>1)
        q=m(d-2),l.x=q.x,l.y=q.y; //changes the position to what it was at the end of the day 2 days ago if the day is prime
    if (d%2)
        l.x-=l.x>2?1:l.x<2?-1:0,l.y-=l.y>2?1:l.y<2?-1:0; //moves the position towards (2,2) if the day is odd
    else
        l.y+=d/2,l.y=l.y>l.b?l.y-l.b-1:l.y; //moves down if the day is even
    if (s(d))
        l.x=l.r; //moves east if the day is a perfect square
    if (s(5*d*d+4)||s(5*d*d-4))
        l.b++; //expands world down if the day is a fibonacci number
    if (s(8*d+1))
        l.r++; //expands world right if the day is a triangular number
    return l;
}

main(i) {
    scanf("%d",&i);
    printf("%d %d",m(i).x,m(i).y);
}

3

Perl 5,284字节

@s=([2,2]);@n=(2,2);@f=(0,1);$w=$h=5;for(1..<>){$f[$_+1]=$f[$_]+$f[$_-1];$t[$_]=$_*($_+1)/2;$s[$_]=[@n];@n=@{$s[$_-1]}if(1 x$_)!~/^1$|^(11+?)\1+$/;($_%2)&&($n[0]-=($n[0]<=>2),$n[1]-=($n[1]<=>2))or$n[1]=($n[1]+$_/2)%$h;$n[0]=$w-1if(int sqrt$_)**2==$_;$h++if$_~~@f;$w++if$_~~@t}say"@n"

283个字节,外加1个-E标志位,而不是-e

相同的代码,但具有更多的空格,更多的括号和更长的变量名:

@start=([2,2]);
@now=(2,2);
@fibonacci=(0,1);
$width = ($height=5);
for my $iterator (1 .. <>) {
  $fibonacci[$iterator+1] = $fibonacci[$iterator] + $fibonacci[$iterator-1];
  $triangular[$iterator] = $iterator * ($iterator+1) / 2;
  $start[$iterator] = [@now];
  @now = @{ $start[$iterator-1] } if ((1 x $iterator) !~ /^1$|^(11+?)\1+$/); # prime
  $now[0] -= ($now[0] <=> 2) , $now[1] -= ($now[1] <=> 2) if ($iterator % 2 != 0); # odd
  $now[1] = ($now[1] + $iterator / 2) % $height if ($iterator % 2 == 0); # even
  $now[0] = $width - 1 if ((int sqrt $iterator) ** 2 == $iterator); # square
  $height ++ if $iterator ~~ @fibonacci;
  $width ++ if $iterator ~~ @triangular;
}
say "@now";

我相信可以进一步打高尔夫。


2

JavaScript中,361个 359字节

N=>{for(c=1,x=y=v=w=j=k=2,h=z=5;c<=N;c++,j=v,k=w,v=x,w=y){m=Math;p=(n,c)=>n%c!=0?c>=n-1?1:p(n,++c):0;[x,y]=c==2||p(c,2)&&c!=1?[j,k]:[x,y];p=x=>x+(x<2?1:x>2?-1:0);c%2?[x,y]=[p(x),p(y)]:y+=c/2;m.sqrt(c)==~~m.sqrt(c)?x=z-1:0;f=(n,c,d)=>d<c?0:d==c?1:f(c,n+c,d);f(1,2,c)||c==1?h++:0;t=(n,c)=>n*++n/2==c?1:--n*n/2>c?0:t(++n,c);t(1,c)?z++:0;x%=z;y%=h}return x+" "+y}

该代码使用Destructuring分配。目前仅Firefox和Safari支持。

说明

N=>{
// C => the day, x,y => position, v,w => position at the start of the day, 
// j,k => position of yesterday
for(c=1,x=y=v=w=j=k=2,h=z=5;c<=N;c++,j=v,k=w,v=x,w=y){
    m=Math;

    // Prime Function for C > 2. Recursive call to save a loop.
    p=(n,c)=>n%c!=0?c>=n-1?1:p(n,++c):0;
    // Assign x and y to yesterday
    [x,y]=c==2||p(c,2)&&c!=1?[j,k]:[x,y];

    // Function to move closer to home
    p=x=>x+(x<2?1:x>2?-1:0);
    c%2?[x,y]=[p(x),p(y)]:y+=c/2;

    // Square check
    m.sqrt(c)==~~m.sqrt(c)?x=z-1:0;

    // Fibonnacci function for C > 1
    f=(n,c,d)=>d<c?0:d==c?1:f(c,n+c,d);
    f(1,2,c)||c==1?h++:0;

    // Triangle function
    t=(n,c)=>n*++n/2==c?1:--n*n/2>c?0:t(++n,c);
    t(1,c)?z++:0;

    // Stay in bounds
    x%=z;y%=h
}
// Output
return x+" "+y}
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.