結果

問題 No.2167 Fibonacci Knapsack
ユーザー hotman78hotman78
提出日時 2022-12-19 08:36:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,707 ms / 2,000 ms
コード長 1,198 bytes
コンパイル時間 2,470 ms
コンパイル使用メモリ 213,972 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-04-29 02:04:23
合計ジャッジ時間 31,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1,100 ms
6,016 KB
testcase_04 AC 1,102 ms
5,376 KB
testcase_05 AC 1,363 ms
7,296 KB
testcase_06 AC 1,263 ms
6,272 KB
testcase_07 AC 1,531 ms
6,272 KB
testcase_08 AC 1,707 ms
6,272 KB
testcase_09 AC 1,426 ms
6,912 KB
testcase_10 AC 1,428 ms
6,656 KB
testcase_11 AC 1,432 ms
6,528 KB
testcase_12 AC 1,543 ms
6,016 KB
testcase_13 AC 1,479 ms
6,784 KB
testcase_14 AC 1,343 ms
6,528 KB
testcase_15 AC 1,218 ms
6,784 KB
testcase_16 AC 1,450 ms
6,656 KB
testcase_17 AC 1,345 ms
5,760 KB
testcase_18 AC 1,206 ms
5,504 KB
testcase_19 AC 1,183 ms
5,760 KB
testcase_20 AC 1,405 ms
6,656 KB
testcase_21 AC 1,469 ms
5,888 KB
testcase_22 AC 1,281 ms
6,144 KB
testcase_23 AC 709 ms
5,632 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