結果

問題 No.2167 Fibonacci Knapsack
ユーザー 👑 rin204rin204
提出日時 2022-12-19 00:29:11
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 1,146 bytes
コンパイル時間 2,166 ms
コンパイル使用メモリ 212,084 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-18 00:08:36
合計ジャッジ時間 9,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define endl '\n'

void solve(){
	int n;
	ll W;
	cin >> n >> W;
	if(n == 1){
		ll w;
		cin >> w;
		if(w <= W) cout << 1 << endl;
		else cout << 0 << endl;
		return;
	}
	vector<ll> w(n), F(n);
	F[0] = 1;
	F[1] = 2;
	for(int i = 0; i < n; i++){
		cin >> w[i];
		if(i >= 2) F[i] = F[i - 1] + F[i - 2];
	}

	reverse(w.begin(), w.end());
	reverse(F.begin(), F.end());

	map<pair<int, ll>, ll> memo;

	auto dfs=[&](auto self, int i, ll W) -> ll {
		if(i == n) return 0;
		else if(i == n - 1){
			if(W >= w[i]) return 1LL;
			else return 0LL;
		}

		if(memo.count({i, W})) return memo[{i, W}];

		if(w[i] > W){
			return self(self, i + 1, W);
		}
		else if(w[i + 1] > W){
			return self(self, i + 1, W - w[i]) + F[i];
		}
		else if(w[i] + w[i + 1] <= W){
			return self(self, i + 1, W - w[i]) + F[i];
		}
		ll ret = max(self(self, i + 2, W - w[i]) + F[i], self(self, i + 2, W - w[i + 1]) + F[i + 1]);
		memo[{i, W}] = ret;
		return ret;
	};

	ll ans = dfs(dfs, 0, W);
	cout << ans << endl;
}


int main(){
	cin.tie(0)->sync_with_stdio(0);

	int t = 1;
	cin >> t;
	while(t--) solve();
}
0