結果

問題 No.320 眠れない夜に
ユーザー Kmcode1Kmcode1
提出日時 2015-12-13 00:28:23
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,422 bytes
コンパイル時間 763 ms
コンパイル使用メモリ 99,820 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2023-10-13 13:51:48
合計ジャッジ時間 4,265 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
7,824 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cctype>
#include<cstdlib>
#include<algorithm>
#include<bitset>
#include<vector>
#include<list>
#include<deque>
#include<queue>
#include<map>
#include<set>
#include<stack>
#include<cmath>
#include<sstream>
#include<fstream>
#include<iomanip>
#include<ctime>
#include<complex>
#include<functional>
#include<climits>
#include<cassert>
#include<iterator>
#include<unordered_set>
#include<unordered_map>
#include<bitset>
using namespace std;

long long int m;
int n;

long long int a;
long long int b;
vector<long long int> v;

map<long long int, int> dp[82];
__int128 sum[82];
inline long long int dfs(int b, unsigned long long int val){
	if (b < 0){
		if (val == 0LL){
			return 0;
		}
		return -1;
	}
	int ans1 = -1;
	int ans2 = -1;
	if (val >= v[b]){
		ans1 = dfs(b - 1, val - v[b]);
	}
	if (ans1 != -1){
		ans1++;
	}
	ans2 = dfs(b - 1, val);
	if (ans2 >= 0){
		if (ans1 == -1 || ans1 > ans2){
			ans1 = ans2;
		}
	}
	return ans1;
}
int main(){
	scanf("%d", &n);
	scanf("%lld", &m);

	a = 1;
	b = 1;
	v.push_back(1);
	v.push_back(1);
	sum[0] = 1;
	sum[1] = 1;
	for (int i = 2; i < n; i++){
		swap(a, b);
		b += a;
		v.push_back(b);
		sum[v.size() - 1] = (__int128)(sum[v.size() - 2]) + (__int128)(b);
	}
	v.pop_back();
	v.pop_back();
	unsigned long long int need = b - m;

	int ans = dfs(v.size() - 1, need);
	printf("%d\n", ans);
	return 0;
}
0