結果

問題 No.2167 Fibonacci Knapsack
ユーザー hotman78hotman78
提出日時 2022-12-19 08:36:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,633 ms / 2,000 ms
コード長 1,198 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 215,668 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-11-18 00:21:43
合計ジャッジ時間 30,709 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1,102 ms
6,816 KB
testcase_04 AC 1,109 ms
6,816 KB
testcase_05 AC 1,365 ms
7,168 KB
testcase_06 AC 1,275 ms
6,820 KB
testcase_07 AC 1,477 ms
6,816 KB
testcase_08 AC 1,633 ms
6,820 KB
testcase_09 AC 1,361 ms
6,820 KB
testcase_10 AC 1,372 ms
6,816 KB
testcase_11 AC 1,415 ms
6,816 KB
testcase_12 AC 1,540 ms
6,816 KB
testcase_13 AC 1,457 ms
6,820 KB
testcase_14 AC 1,316 ms
6,820 KB
testcase_15 AC 1,217 ms
6,816 KB
testcase_16 AC 1,429 ms
6,816 KB
testcase_17 AC 1,322 ms
6,820 KB
testcase_18 AC 1,185 ms
6,820 KB
testcase_19 AC 1,158 ms
6,816 KB
testcase_20 AC 1,378 ms
6,820 KB
testcase_21 AC 1,454 ms
6,820 KB
testcase_22 AC 1,269 ms
6,816 KB
testcase_23 AC 710 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma optimize("Ofast")
#pragma target("avx2")
#include<bits/stdc++.h>
using namespace std;
using lint = long long;
#define rep(i,a,b) for(int i=(a);i<(b);++i)
#define endl '\n'

int main(){
    cin.tie(0)->sync_with_stdio(0);
    int t;
    cin>>t;
    while(t--){
        lint n,w;
        cin>>n>>w;
        vector<lint>a(n),b(n+1);
        rep(i,0,n)cin>>a[i];
        rep(i,0,n)b[i+1]=b[i]+a[i];
        vector<lint>f(n);
        f[0]=1;
        if(n>=2)f[1]=2;
        rep(i,2,n)f[i]=f[i-1]+f[i-2];
        map<lint,lint>dp;
        lint ans=0;
        dp[w]=0;
        for(lint i=n-1;i>=0;i--){
            map<lint,lint>dp1;
            for(auto [e,c]:dp){
                if(i!=0&&e-a[i]-a[i-1]>=0){
                    dp1[e-a[i]]=max(dp1[e-a[i]],c+f[i]);
                    ans=max(ans,c+f[i]);
                }else{
                    bool ok=0;
                    if(e-a[i]>=0){
                        ok=1;
                        ans=max(ans,c+f[i]);
                        dp1[e-a[i]]=max(dp1[e-a[i]],c+f[i]);
                    }
                    dp1[e]=max(dp1[e],c);
                }
            }
            swap(dp,dp1);
        }
        cout<<ans<<endl;
    }
}
0