最低斐波那契挑战!


19

挑战

在此任务中,您将得到一个整数N(小于10 6),找到仅使用斐波那契数就可以求和N的最小方法-该分区称为Zeckendorf表示

您可以多次使用任何斐波纳契数,并且如果有多个表示输出,则可以多次使用。

例如,如果输入为67,则一个可能的输出可能是使用斐波那契数1、3、8、55,这也是可用于获取总和67的最小斐波那契数。

输入N在单行上给出,输入由EOF终止。

例子

以格式给出 input: output

0: 0
47: 34+13
3788: 2584+987+144+55+13+5
1646: 1597+34+13+2
25347: 17711+6765+610+233+21+5+2
677: 610+55+8+3+1
343: 233+89+21
3434: 2584+610+233+5+2

约束条件

  • 输入数量将不超过10 6个值。
  • 对于所有输入,您的程序的运行时间均不得超过5秒。
  • 您可以使用任何选择的语言。
  • 最短的解决方案获胜!

“您可以输入斐波那契数字...”是吗?“输入的数量将不超过10 ^ 6个值。” 因此,我们永远不需要将超过10 ^ 6的数字加在一起?您是说输入的总和不超过10 ^ 6吗?
mellamokb

7
剧透:1)贪婪算法(减去最大斐波那契数直到输入为零)产生最优解。2)最佳解决方案不需要两次使用斐波那契数(从1开始)。3)对于N <= 1000000,最优解将不超过14个项。
乔伊·亚当斯

6
@Joey:更普遍的是,贪心算法将正整数分解为不同的斐波那契数之和,从而不使用连续的斐波那契数(这称为Zeckendorf定理)。
2011年

1
剧透4:从0 1开始的29个斐波那契数列就足够了。
彼得·泰勒

@Nabb:感谢您解释数学部分。
Quixotic

Answers:


16

摩托罗拉68000组件-34字节

(GNU汇编器语法)

| short min_fib_partition(long N asm("%d2"), long *out asm("%a0"))
min_fib_partition:
    | Generate Fibonacci numbers on the stack (-1, 1, 0, 1, 1, 2, 3, ..., 1134903170).
    moveq #-1, %d0          | A = -1
    moveq #1, %d1           | B = 1
generate_loop:
    move.l %d0, -(%sp)      | Push A to the stack.
    exg.l %d0, %d1          | A' = B
    add.l %d0, %d1          | B' = A + B
    bvc.s generate_loop     | Stop when signed long overflows.

    | Go back up the stack, partitioning N using the greedy algorithm.
    moveq #0, %d0           | Initialize return value (number of terms).
subtract_loop:
    move.l (%sp)+, %d1      | Pop a Fibonacci number F off the stack.
    cmp.l %d1, %d2          | If N < F, continue to smaller Fibonacci number.
    blt.s subtract_loop
    addq.w #1, %d0          | Increment the term count.
    move.l %d1, (%a0)+      | Append F to the output array.
    sub.l %d1, %d2          | N -= F
    bne.s subtract_loop     | Continue if N has not yet reached zero.

    | Clear the stack by searching for that -1.
clear_stack_loop:
    tst.l (%sp)+
    bge clear_stack_loop

done:
    rts

36→34:使斐波那契发生器在溢出时停止而不是通过计数停止,并固定0表壳,使其输出[0]而不是[]。但是,N现在通过负数崩溃。

顶部的注释是此函数的C原型,它使用语言扩展来标识哪些参数在哪里(默认情况下,它们在堆栈中)。

我的TI-89配备10MHz处理器,需要5分钟才能在1-1,000,000上运行此功能。

尽管(目前)机器代码的字节数少于GolfScript解决方案的字节数,但将其作为最短的解决方案可能是不公平的,因为:

如果您有TI-89 / 92 / V200,则可以在此处下载完整的项目(过时的):

https://rapidshare.com/files/154945328/minfib.zip

祝您好运,哄骗RapidShare给您实际的文件。有人知道这么大的文件的托管者吗?8940的字节很多。


您可以在列表中添加第四个点:解决方案未以正确的格式提供输出:P我仅在字符串文字上使用7个字符。BTW您是否为输入0返回列表[0]?在我看来,您返回了空列表。这是一个令人讨厌的特殊情况。
彼得·泰勒

@Peter Taylor:你是对的,我想念那件事。我弄混了学期和学期数。我会尽快发布修复程序。
乔伊·亚当斯

5

Javascript(142)

一次仅处理单个输入。因为多行输入对JavaScript没有用。

k=n=prompt(f=[a=b=1])|0;while((b=a+(a=b))<n)f.push(b);for(i=f.length,g=[];i--;)if(f[i]<=k)g.push(f[i]),k-=f[i];alert(n+': '+(n?g.join('+'):0))

http://jsfiddle.net/EqMXQ/


5

C,244个字符

#define P printf
int f[30];int main(){f[28]=f[29]=1;int i=28;for(;i>0;--i)f[i-1]=f[i+1]+f[i];int x;while(scanf("%i",&x)!=-1){P(x?"%i: ":"0: 0\n",x);if(x>0){int i=0,a=0;while(x>0){while(f[i]>x)++i;if(a++)P("+");P("%i",f[i]);x-=f[i];}P("\n");}}}

带空格:

#define P printf
int f[30];
int main(){
    f[28] = f[29] = 1;
    int i = 28;
    for(; i > 0; --i) f[i-1] = f[i+1] + f[i];
    int x;
    while(scanf("%i",&x) != -1) {
        P(x ? "%i: " : "0: 0\n",x);
        if(x > 0) {
            int i = 0, a = 0;
            while(x > 0) {
                while(f[i] > x) ++i;
                if(a++) P("+");
                P("%i",f[i]);
                x -= f[i];
            }
            P("\n");
        }
    }
}

该程序将从标准输入中读取数字并将其写入标准输出。


5

Golfscript,43个字符

~]{:|': '[{0 1{|>!}{.@+}/;|1$-:|}do]'+'*n}%

我认为可以将其减少3到5个字符。例如展开然后扔掉阵列感觉很浪费。


3

F# - 282个252 241字符

let mutable d=int(stdin.ReadLine())
let q=d
let rec f x=if x<2 then 1 else f(x-2)+f(x-1)
let s x=
 d<-d-x
 x
printf"%d: %s"q (Core.string.Join("+",[for i in List.filter(fun x->x<d)[for i in 28..-1..0->f i]do if d-i>=0 then yield s i]))

3

Python-183个字符

该代码的大部分是处​​理多个输入:(

f=lambda a,b,n:b>n and a or f(b,a+b,n)
g=lambda n:n>0and"%d+%s"%(f(0,1,n),g(n-f(0,1,n)))or""
try:
 while 1:
  n=input()
  print "%d: %s"%(n,n<1and"0"or g(n).strip("+"))
except:0

您可以将放在n=input()上一行的末尾吗?
mbomb007

我想是这样。:\
st0le

您也可以在以下位置删除空格来保存角色print
mbomb007

2

Mathematica 88

n = RandomInteger[10000, 10];

Print[k=#,For[i=99;l={},k>0,If[#<=k,k-=#;l~AppendTo~#]&@Fibonacci@i--];":"l~Row~"+"]&/@n

输出示例

3999: 2584+987+377+34+13+3+1
9226: 6765+1597+610+233+21
7225: 6765+377+55+21+5+2
9641: 6765+2584+233+55+3+1
6306: 4181+1597+377+144+5+2
4507: 4181+233+89+3+1
8848: 6765+1597+377+89+13+5+2
6263: 4181+1597+377+89+13+5+1
2034: 1597+377+55+5
6937: 6765+144+21+5+2


1

Scala-353个字符(用于处理多个输入的100个字符)

def h(m:Int){lazy val f={def g(a:Int,b:Int):Stream[Int]=a #:: g(b,a+b);g(0,1);};if(m==0)println(m+": "+m)else{var s=0;var t= f.takeWhile(_ <= m);var w="";while(s!= m){s+=t.last;w+=t.last+"+";t=t.takeWhile(_<=m-s);};println(m+": "+w.take(w.length-1))}}
Iterator.continually(Console.readLine).takeWhile(_ != "").foreach(line => h(Integer.parseInt(line)))

Iterator.continually(Console.readLine).takeWhile(_ != "").foreach(line => h(Integer.parseInt(line)))可以缩短以io.Source.stdin.getLines.foreach(l=>h(Integer.parseInt(l)))节省40个字符。
加雷斯

1

Python 3(170个字符)

while 1:
 s=input()
 if not s:break
 s=n=int(s);f=[1];t=[]
 while f[-1]<n:f+=[sum(f[-2:])]
 for i in f[::-1]:
  if s>=i:s-=i;t+=[i]
 print(n,'=','+'.join(map(str,t))or 0)

多行输入,空行停止


1

C,151个字符

main() {int i=1,n,f[30]={1,1};for(;i++<30;)f[i]=f[i-1]+f[i-2];while(scanf("%d",&n))for(i=30;;--i)if(f[i]<=n){printf("%d\n",f[i]);if(!(n-=f[i]))break;}}

可读版本:

main() {
    int i=1,n,f[30]={1,1};
    for(;i++<30;)f[i]=f[i-1]+f[i-2];
    while(scanf("%d",&n))
        for(i=30;;--i)
            if(f[i]<=n) {
                printf("%d\n",f[i]);
                if (!(n-=f[i])) break;
            }
}

1

R,170

x=scan();Filter(function(i)cat(unlist(Map(function(d)if(i>=d&&i){i<<-i-d;d},rev(lapply(Reduce(function(f,x)c(f[2],sum(f)),1:94,c(0,1),F,T),head,n=1)))),sep='+',fill=T),x)

处理多个输入并将结果发送到STDOUT

> x=scan();Filter(function(i)cat(unlist(Map(function(d)if(i>=d&&i){i<<-i-d;d},rev(lapply(Reduce(function(f,x)c(f[2],sum(f)),1:94,c(0,1),F,T),head,n=1)))),sep='+',fill=T),x)
1: 100
2: 200
3: 300
4: 
Read 3 items
89+8+3
144+55+1
233+55+8+3+1
numeric(0)
>

1

R(460个字符)

使用R的另一个版本。
从文件“输入”读取,输出到文件“输出”

d=as.list(as.integer(scan("input","",sep="\n")));n=36;f=rep(1,n);for(i in 3:n){f[i]=f[i-2]+f[i-1]};d2=lapply(d,function(x){a=vector("integer");i=1;while(x>0){id=which(f>=x)[1];if(x==f[id]){x=x-f[id];a[i]=f[id]}else{x=x-f[id-1];a[i]=f[id-1]}i=i+1}a});d=mapply(c,d,d2,SIMPLIFY=0);for(i in 1:length(d)){t=d[[i]];l=length(t);if(l==1){d[[i]]=paste(t[1],t[1],sep=": ")}else{d[[i]]=paste(t[1],": ",paste(t[2:l],collapse="+"),sep="")}}lapply(d,write,"output",append=1)

“输入”示例

0
47
3788
1646
25347
677
343
3434

“输出”示例

0: 0
47: 34+13
3788: 2584+987+144+55+13+5
1646: 1597+34+13+2
25347: 17711+6765+610+233+21+5+2
677: 610+55+8+3+1
343: 233+89+21
3434: 2584+610+233+5+2

更具可读性的版本:

dt <- as.list(as.integer(scan(file = "input", what = "", sep = "\n")))
n <- 36
fib <- rep(1, n)
for(i in 3:n){fib[i] <- fib[i-2] + fib[i-1]}
dt2 <- lapply(dt, function(x){answ <- vector(mode = "integer")
                               i <- 1
                               while(x > 0){
                                   idx <- which(fib>=x)[1]
                                   if(x == fib[idx]){
                                       x <- x - fib[idx]
                                       answ[i] <- fib[idx]
                                   } 
                                   else {
                                       x <- x - fib[idx-1]
                                       answ[i] <- fib[idx-1]
                                   }
                                   i <- i + 1
                               }
                               answ})
dt <- mapply(FUN = c, dt, dt2, SIMPLIFY = FALSE)
for(i in 1:length(dt)){
    t1 <- dt[[i]]
    t1.len <- length(t1)
    if(t1.len == 1){
        dt[[i]] <- paste(t1[1], t1[1], sep=": ")
    } else {
        dt[[i]] <- paste(t1[1], ": ", paste(t1[2:t1.len], collapse = "+"), sep="")
    }
}
lapply(dt, write, "output", append=TRUE)

0

D(196个字符)

用运行rdmd --eval=…。这样可方便地隐藏了样板import x, y, z;void main() {…}

int f(int i){return i-->1?f(i--)+f(i):i+2;}int n;foreach(x;std.stdio.stdin.byLine.map!(to!int))writeln(x,": ",x?n=x,reduce!((r,i)=>f(i)<=n?n-=f(i),r~="+"~f(i).text:r)("",29.iota.retro)[1..$]:"0")

0

使用Java

package org.mindcraft;

import java.util.Scanner;

public class Fibbo {
    public static void main(String[] args) {
    String number = null;
    int tmp, sum;
    int i = 1, j = 1;
    Scanner in = new Scanner(System.in);
    number = in.nextLine();
    String[] arr = number.split(" ");
    for (int it = 0; it < arr.length; it++) {
        tmp = Integer.parseInt(arr[it]);
        String value = tmp+" : ";
        while (tmp > 0) {
            i = 1;
            j = 1;
            for (int k = 0; k < 10000; k++) {
                sum = i + j;
                if (sum > tmp) {
                    //if (value == null) {
                    char ch=value.charAt(value.length()-2);
                    if(ch==':')
                    {
                        value = value+" "+ j + "";
                    } else {
                        value = value + " + " + j;
                    }

                    tmp = tmp - j;
                    break;
                }
                i = j;
                j = sum;
            }
        }
        System.out.println(value);
    }
}
}

这是代码高尔夫球,因此请确保对您的答案进行高尔夫球。
KSFT 2015年

1
欢迎来到PPCG!正如KSFT所说,这是一个代码高尔夫挑战。请尽力以最少的字节数回答这个问题。至少,您可以删除不必要的空格并使用单字母的类/方法/变量名。完成此操作后,请在答案中也包括字节数。
马丁·恩德
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.