結果

問題 No.2866 yuusaan's Knapsack
ユーザー karinohitokarinohito
提出日時 2024-10-19 02:03:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 3,753 ms
コンパイル使用メモリ 207,676 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-19 02:03:18
合計ジャッジ時間 4,493 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,820 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 6 ms
6,820 KB
testcase_06 AC 10 ms
6,816 KB
testcase_07 AC 9 ms
6,820 KB
testcase_08 AC 10 ms
6,816 KB
testcase_09 AC 9 ms
6,816 KB
testcase_10 AC 9 ms
6,820 KB
testcase_11 AC 8 ms
6,816 KB
testcase_12 AC 9 ms
6,816 KB
testcase_13 AC 8 ms
6,820 KB
testcase_14 AC 9 ms
6,820 KB
testcase_15 AC 10 ms
6,816 KB
testcase_16 AC 9 ms
6,820 KB
testcase_17 AC 10 ms
6,816 KB
testcase_18 AC 8 ms
6,816 KB
testcase_19 AC 11 ms
6,816 KB
testcase_20 AC 9 ms
6,816 KB
testcase_21 AC 9 ms
6,820 KB
testcase_22 AC 9 ms
6,820 KB
testcase_23 AC 10 ms
6,816 KB
testcase_24 AC 9 ms
6,820 KB
testcase_25 AC 10 ms
6,816 KB
testcase_26 AC 10 ms
6,816 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 9 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;

#include<atcoder/modint>
using namespace atcoder;
using mint=modint998244353;

int main(){

    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    ll N,W;
    cin>>N>>W;
    vector<pair<ll,mint>> DP(30010,{-1e18,0});
    DP[10000]={0,1};
    for(int i=0;i<N;i++){
        ll u,v;
        cin>>v>>u;
        auto NDP=DP;
        for(int w=0;w<30010;w++){
            if(w+u<30010&&w+u>=0){
                if(NDP[w+u].first==DP[w].first+v){
                    NDP[w+u].second+=DP[w].second;
                }
                else if(NDP[w+u].first<DP[w].first+v){
                    NDP[w+u]={DP[w].first+v,DP[w].second};
                }
                else{

                }
            }
        }
        swap(DP,NDP);
    }
    ll mx=-1e18;
    mint an=0;
    for(int w=10000+W;w>=0;w--){
        if(mx<DP[w].first){
            an=0;
            mx=DP[w].first;
        }
        if(mx==DP[w].first)an+=DP[w].second;
    }
    cout<<mx<<" "<<an.val()<<endl;
}
0