結果

問題 No.320 眠れない夜に
ユーザー ぴろずぴろず
提出日時 2015-12-17 21:05:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 1,188 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 77,900 KB
実行使用メモリ 82,724 KB
最終ジャッジ日時 2024-09-16 07:35:37
合計ジャッジ時間 8,326 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,384 KB
testcase_01 AC 117 ms
41,620 KB
testcase_02 AC 107 ms
40,500 KB
testcase_03 AC 122 ms
41,228 KB
testcase_04 AC 117 ms
40,836 KB
testcase_05 AC 155 ms
46,408 KB
testcase_06 AC 167 ms
47,552 KB
testcase_07 AC 150 ms
47,604 KB
testcase_08 AC 115 ms
40,448 KB
testcase_09 AC 112 ms
40,740 KB
testcase_10 AC 156 ms
45,444 KB
testcase_11 AC 128 ms
41,532 KB
testcase_12 AC 149 ms
44,144 KB
testcase_13 AC 138 ms
42,348 KB
testcase_14 AC 394 ms
82,724 KB
testcase_15 AC 119 ms
41,108 KB
testcase_16 AC 116 ms
41,268 KB
testcase_17 AC 115 ms
40,964 KB
testcase_18 AC 106 ms
39,716 KB
testcase_19 AC 117 ms
41,392 KB
testcase_20 AC 129 ms
42,388 KB
testcase_21 AC 126 ms
41,100 KB
testcase_22 AC 121 ms
41,068 KB
testcase_23 AC 119 ms
41,384 KB
testcase_24 AC 131 ms
41,704 KB
testcase_25 AC 126 ms
41,260 KB
testcase_26 AC 133 ms
41,524 KB
testcase_27 AC 130 ms
41,332 KB
testcase_28 AC 117 ms
41,588 KB
testcase_29 AC 132 ms
41,252 KB
testcase_30 AC 130 ms
41,280 KB
testcase_31 AC 131 ms
41,520 KB
testcase_32 AC 101 ms
39,576 KB
testcase_33 AC 226 ms
59,200 KB
testcase_34 AC 121 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no320;

import java.util.ArrayList;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		long[] fib = new long[81];
		long[] fibsum = new long[81];
		fib[1] = fib[2] = 1;
		for(int i=3;i<=80;i++) {
			fib[i] = fib[i-2] + fib[i-1];
		}
		for(int i=1;i<=80;i++) {
			fibsum[i] = fibsum[i-1] + fib[i];
		}
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long m = sc.nextLong();
		long x = fib[n] - m;
		if (x == 0) {
			System.out.println(0);
			return;
		}
		
		//フィボナッチ数列は指数的に増加するから大きい方から詰めていけば実はOKという予想
		ArrayList<Pair> al = new ArrayList<>();
		al.add(new Pair(0,0));
		for(int i=n-2;i>=1;i--) {
			ArrayList<Pair> next = new ArrayList<>();
			for(Pair p:al) {
				if (p.x + fib[i] == x) {
					System.out.println(p.dist + 1);
					return;
				}else if(p.x + fib[i] < x) {
					next.add(new Pair(p.x + fib[i], p.dist + 1));
				}
				if (p.x + fibsum[i-1] >= x) {
					next.add(p);
				}
			}
			al = next;
		}
		System.out.println(-1);
	}
}
class Pair {
	int dist;
	long x;
	public Pair(long x,int dist) {
		this.x = x;
		this.dist = dist;
	}
}
0