计算斐波那契系数


11

背景

斐波那契数列定义为

f(1) = 1
f(2) = 1
f(n) = f(n-1) + f(n-2)

与阶乘相似,Fibonorial是前n个斐波纳契数的乘积。

g(n) = f(1) * f(2) * ... * f(n-1) * f(n)

与二项式系数相似的斐波诺式系数定义为

a(n, 0) = 1
a(n, k) = g(n) / ( g(n-k) * g(k) )
        = f(n) * f(n-1) * ... * f(n-k+1) / ( f(1) * f(2) * ... * f(k) )

任务

你的目标是创建一个功能或程序来计算给定的两个非负整数Fibonomial系数ñķķñ

测试用例

a(0, 0) = 1
a(1, 1) = 1
a(2, 0) = 1
a(3, 2) = 2
a(8, 3) = 1092
a(11, 5) = 1514513
a(22, 7) = 7158243695757340957617
a(25, 3) = 49845401197200
a(50, 2) = 97905340104793732225
a(100, 1) = 354224848179261915075

规则

有关


如果需要,是一个网页,列出1335了斐波南系数的顺序中的第一个值。
R. Kap

a(50, 2)测试用例是否缺少领导9

@SirBidenXVII哦,是的,您是对的,我错过了一个数字。
2016年

Answers:


1

果冻,16 字节

0+⁸С1ḊP
;_/Ç€:/

在线尝试!

感谢Dennis提供的Fibonacci-orial辅助链接。

;_/Ç€:/     Main chain,  argument: [n,r]
 _/         Find n-r
;           Attach it to original: [n,r,n-r]
   ǀ       Apply helper link to each element, yielding [g(n),g(r),g(n-r)]
     :/     Reduce by integer division, yielding g(n)//g(r)//g(n-r)

0+⁸С1ḊP    Helper link, argument: n
0+⁸С1ḊP    Somehow return the n-th Fibonacci-orial.

4

Haskell,46个字节

l=0:scanl(+)1l;a%0=1;a%b=(a-1)%(b-1)*l!!a/l!!b

输出浮点数。生成无限的斐波那契列表。然后,进行二项式消除,乘以和除以斐波纳契列表中的元素。


4

Python 67字节

f=lambda n,a=1,b=1:n<1or a*f(n-1,b,a+b)
lambda n,k:f(n)/f(k)/f(n-k)

使用拨打电话a(n,k)。使用@Dennis财务答案(允许吗?),否则使用该问题的直接实现。


所有用户内容均根据CC-BY-SA许可,因此,只要您提供出处,就可以重用其他答案中的代码。您可以将第二个lambda缩短为lambda n,k:f(n)/f(k)/f(n-k); 命名不是必需的。
丹尼斯,

3

Haskell,77 57 55 52 50字节

第一行最初来自Fibonacci函数或序列挑战,由@Anon编写。

第二行是@ChristianSievers斐波那契式挑战赛中添加的。

现在,我添加了第三行。这些挑战还会走多远?=)

f=1:scanl(+)1f
g=(scanl(*)1f!!)
n#k=g n/g(n-k)/g k

感谢5个字节@xnor!


你能/而不是div呢?
xnor

嗯,是的,但是最终将以浮点数表示。
瑕疵的

哦,这实际上是不被禁止的,谢谢=)
更加糟糕的

您大概可以分两次以避免parens。
xnor

1
现在我们有了这个,接下来的事情可能就是斐波那契式的转变;-)
Christian Sievers

3

C,206字节:

#include <inttypes.h>
uint64_t F(x){return x<1 ? 0:x==1 ? 1:F(x-1)+F(x-2);}uint64_t G(H,B){uint64_t P=1;for(B=3;B<=H;B++)P*=F(B);return P;}main(U,Y){scanf("%d %d",&U,&Y);printf("%llu\n",G(U)/(G(U-Y)*G(Y)));}

执行后,要求输入2个以空格分隔的整数。该#include预处理器需要,因为没有它,uint_64是不是有效的类型,唯一的其他方法,使这项工作相当大的输出采用unsigned long long两者的返回类型F(斐波那契)和G(Fibonorial)功能,这是远远长于只是包括<inttypes.h>和使用3个uint64_t类型声明。但是,即使这样,它也无法在输入值上正常工作14 1(通过使用this进行确认,该列列出1325了斐波那契系数序列中的第一个值),最有可能是因为斐波那契和/或Fibnorial的数字表示15及以上表示溢出了64位使用的整数类型。

C在线!(爱迪生)


这可能是因为15次Fibonorial溢流uint_64
英里

3

Cheddar75 64字节

a->b->(g->g((a-b+1)|>a)/g(1|>b))(n->n.map(Math.fib).reduce((*)))

用法

cheddar> var f = a->b->(g->g((a-b+1)|>a)/g(1|>b))(n->n.map(Math.fib).reduce((*)))
cheddar> f(11)(5)
1514513

2

MATL25 23字节

1ti2-:"yy+]vtPi:)w5M)/p

在线尝试!

说明

1t      % Push 1 twice
i2-:    % Take input n. Generate vector [1 2 ... n-2]
"       % Repeat n-2 times
  yy    %   Push the top two elements again
  +     %   Add them
]       % End
v       % Concatenate into column vector of first n Fibonacci numbers
tP      % Duplicate and reverse
i:      % Take input k. Generate vector [1 2 ... k]
)       % Apply index to get last k Fibonacci numbers
w       % Swap to move vector of first n Fibonacci numbers to top
5M      % Push [1 2 ... k] again
)       % Apply index to get first k Fibonacci numbers
/       % Divide element-wise
p       % Product of vector. Implicitly display

2

R,120字节

还有可能打更多的高尔夫球,所以当然欢迎发表评论!
我在代码的开头使用了斐波那契-口头问题的答案:

A=function(n,k){p=(1+sqrt(5))/2;f=function(N){x=1;for(n in 1:N){x=prod(x,(p^n-(-1/p)^n)/sqrt(5))};x};f(n)/(f(k)*f(n-k))}

松散

A=function(n,k){
p=(1+sqrt(5))/2
    f=function(N){
        x=1
        for(n in 1:N){
           x=prod(x,(p^n-(-1/p)^n)/sqrt(5))
                     }
        x
        }

f(n)/(f(k)*f(n-k))
}

2

Java的:304 260 257

我通过稍微压缩备忘录功能f(n)并将其完全删除,用直接数组访问代替了它,从而节省了一些字节。

BigInteger[]c;BigInteger a(int n,int k){m(n);return g(n).divide(g(n-k)).divide(g(k));}BigInteger g(int n){return n<3?BigInteger.ONE:g(n-1).multiply(c[n-1]);}void m(int n){c=new BigInteger[n];for(int i=0;i<n;++i)c[i]=(i<2)?BigInteger.ONE:c[i-2].add(c[i-1]);}

不幸的是,BigInteger由于溢出而被要求,我不得不添加备忘录。即使在第6代i7上,的方式太长,大投入运行。

取消高尔夫,带有样板classmain代码:

import java.math.BigInteger;

public class ComputeTheFibonomialCoefficient {

  public static void main(final String[] args) {
    // @formatter:off
    String[][] testData = new String[][] {
      { "0", "0", "1" },
      { "1", "1", "1" },
      { "2", "0", "1" },
      { "3", "2", "2" },
      { "8", "3", "1092" },
      { "11", "5", "1514513" },
      { "22", "7", "7158243695757340957617" },
      { "25", "3", "49845401197200" },
      { "50", "2", "97905340104793732225" },
      { "100", "1", "354224848179261915075" }
    };
    // @formatter:on

    for (String[] data : testData) {
      System.out.println("a(" + data[0] + ", " + data[1] + ")");
      System.out.println("  Expected -> " + data[2]);
      System.out.print("    Actual -> ");
      System.out.println(new ComputeTheFibonomialCoefficient().a(
          Integer.parseInt(data[0]), Integer.parseInt(data[1])));
      System.out.println();
    }
  }

  // Begin golf

  BigInteger[] c;

  BigInteger a(int n, int k) {
    m(n);
    return g(n).divide(g(n - k)).divide(g(k));
  }

  BigInteger g(int n) {
    return n < 3 ? BigInteger.ONE : g(n - 1).multiply(c[n - 1]);
  }

  void m(int n) {
    c = new BigInteger[n];
    for (int i = 0; i < n; ++i)
      c[i] = (i < 2) ? BigInteger.ONE : c[i - 2].add(c[i - 1]);
  }
  // End golf
}

程序输出:

a(0, 0)
  Expected -> 1
    Actual -> 1

a(1, 1)
  Expected -> 1
    Actual -> 1

a(2, 0)
  Expected -> 1
    Actual -> 1

a(3, 2)
  Expected -> 2
    Actual -> 2

a(8, 3)
  Expected -> 1092
    Actual -> 1092

a(11, 5)
  Expected -> 1514513
    Actual -> 1514513

a(22, 7)
  Expected -> 7158243695757340957617
    Actual -> 7158243695757340957617

a(25, 3)
  Expected -> 49845401197200
    Actual -> 49845401197200

a(50, 2)
  Expected -> 97905340104793732225
    Actual -> 97905340104793732225

a(100, 1)
  Expected -> 354224848179261915075
    Actual -> 354224848179261915075

1

JavaScript(ES6),70个字节

a=n=>n<2?1:a(--n)+a(--n);b=n=>n?a(--n)*b(n):1;c=n=>k=>b(n)/b(n-k)/b(k)

使用调用c(n)(k),非常简单。



1

dc,67位元组

?skdsn[si1d[sadlarla+zli>b*]sbzli>b*]dsgxsplnlk-lgxsqlklgxlprlqr*/f

输入被当作一行中以空格分隔的十进制常数。

这将使用我的回答/Fibon(acci-)?orial/问题,这最后一步在堆栈上成倍的所有号码,需要其他的数字,而计算其他Fibonorials到存储在别处。

?       # Take input from stdin
skdsn   # Store second number in register `k'; store a copy of first number in register `n'
[si1d[sadlarla+zli>b*]sbzli>b*] # Compute Fibonorial of top-of-stack, multiplying
                                #   until stack depth is 1
dsgx    # Store a copy of this function as g and execute it: g(n)
sp      # Store g(n) in register `p'
lnlk-   # Compute n-k
lgx     # Compute g(n-k)
sq      # Store g(n-k) in register `q'
lk lgx  # Compute g(k)
        # Top ---Down--->
lp      #  g(n)    g(k)
r       #  g(k)    g(n)
lq      #  g(n-k)  g(k)    g(n)
r       #  g(k)    g(n-k)  g(n)
*       # (g(k)g(n-k))     g(n)
/       #  g(n)/(g(k)g(n-k))
f       # Dump stack to stdout


1

公理108字节

b(n,k)==(n<=k or k<1=>1;reduce(*,[fibonacci(i) for i in (n-k+1)..n])/reduce(*,[fibonacci(i) for i in 1..k]))

一些测试

(34) -> b(0,0),b(1,1),b(2,0),b(3,2),b(8,3),b(11,5),b(22,7)
   Compiling function b with type (NonNegativeInteger,
      NonNegativeInteger) -> Fraction Integer
   Compiling function b with type (PositiveInteger,PositiveInteger) ->
      Fraction Integer
   Compiling function b with type (PositiveInteger,NonNegativeInteger)
       -> Fraction Integer

   (34)  [1,1,1,2,1092,1514513,7158243695757340957617]
                                                 Type: Tuple Fraction Integer
(35) -> b(25,3),b(50,2),b(100,1)

   (35)  [49845401197200,97905340104793732225,354224848179261915075]

类型:元组分数整数


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.