project euler 25

Problem 25


1000-digit Fibonacci number

The Fibonacci sequence is defined by the recurrence relation:
F1 = 1 F2 = 1
Fn = Fn−1 + Fn−2

Hence the first 12 terms will be:
F1 = 1
F2 = 1
F3 = 2
F4 = 3
F5 = 5
F6 = 8
F7 = 13
F8 = 21
F9 = 34
F10 = 55
F11 = 89
F12 = 144

The 12th term, F12, is the first term to contain three digits.

What is the first term in the Fibonacci sequence to contain 1000 digits?


一千位斐波那契数

斐波那契数列是按如下递归关系定义的数列:
F1 = 1 F2 = 1
Fn = Fn−1 + Fn−2

因此斐波那契数列的前12项分别是:
F1 = 1
F2 = 1
F3 = 2
F4 = 3
F5 = 5
F6 = 8
F7 = 13
F8 = 21
F9 = 34
F10 = 55
F11 = 89
F12 = 144

第一个有三位数字的项是第12项F12

在斐波那契数列中,第一个有1000位数字的是第几项?

package projecteuler;

import java.util.Arrays;

import org.junit.Test;

public class Prj25 {

	/**
	 * The Fibonacci sequence is defined by the recurrence relation:
	 * 
	 * Fn = Fn−1 + Fn−2, where F1 = 1 and F2 = 1. Hence the first 12 terms will
	 * be:
	 * 
	 * F1 = 1 F2 = 1 F3 = 2 F4 = 3 F5 = 5 F6 = 8 F7 = 13 F8 = 21 F9 = 34 F10 =
	 * 55 F11 = 89 F12 = 144 The 12th term, F12, is the first term to contain
	 * three digits.
	 * 
	 * What is the index of the first term in the Fibonacci sequence to contain
	 * 1000 digits?
	 */
	@Test
	public void test() {
		System.out.println(Calculator.calculate(1000));
	}

	public static class Calculator {

		public static int calculate(int bitsLimit) {

			int a[] = new int[bitsLimit];
			int b[] = new int[bitsLimit];

			a[a.length - 1] = 1;
			b[b.length - 1] = 1;

			int start = 3;

			while (true) {

				int[] c = sumArr(a, b);
				if (c[0] > 0) {
					break;
				}
				a = copyArrs(b);
				b = copyArrs(c);
				start++;

			}

			return start;

		}

		private static int[] copyArrs(int[] b) {
			return Arrays.copyOf(b, b.length);
		}

		private static int[] sumArr(int[] a, int[] b) {
			int[] ret = copyArrs(b);
			for (int i = 0; i < a.length; i++) {
				ret[i] += a[i];
			}

			for (int i = b.length - 1; i > 0; i--) {
				ret[i - 1] += (ret[i] / 10);
				ret[i] = ret[i] % 10;
			}
			return ret;
		}
	}
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值