結果

問題 No.2866 yuusaan's Knapsack
ユーザー にしろにしろ
提出日時 2024-08-31 01:52:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,151 bytes
コンパイル時間 5,700 ms
コンパイル使用メモリ 314,712 KB
実行使用メモリ 35,456 KB
最終ジャッジ日時 2024-08-31 01:52:42
合計ジャッジ時間 7,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 34 ms
33,920 KB
testcase_07 AC 27 ms
27,904 KB
testcase_08 AC 32 ms
32,000 KB
testcase_09 AC 48 ms
29,824 KB
testcase_10 AC 32 ms
31,616 KB
testcase_11 AC 23 ms
23,296 KB
testcase_12 AC 28 ms
28,544 KB
testcase_13 AC 25 ms
25,344 KB
testcase_14 AC 29 ms
28,672 KB
testcase_15 AC 32 ms
32,256 KB
testcase_16 AC 25 ms
25,344 KB
testcase_17 AC 32 ms
30,336 KB
testcase_18 AC 22 ms
22,272 KB
testcase_19 AC 35 ms
34,816 KB
testcase_20 AC 27 ms
27,264 KB
testcase_21 AC 29 ms
28,800 KB
testcase_22 AC 28 ms
27,264 KB
testcase_23 AC 35 ms
33,536 KB
testcase_24 AC 27 ms
26,752 KB
testcase_25 AC 30 ms
30,464 KB
testcase_26 AC 36 ms
35,456 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
using ld = long double;
using mint = atcoder::modint998244353;
const ll inf = 9e18;

pair<ll,mint> calc(pair<ll,mint> x,pair<ll,mint> y,ll add=0){
    auto[vx,cx]=x;
    auto[vy,cy]=y;
    if(vx>vy+add) return x;
    if(vx==vy+add) return {vx,cx+cy};
    else return {vy+add,cy};
}

int main(){

	ios::sync_with_stdio(0);
	cin.tie(0);

    ll n,W;
    cin >> n >> W;
    vector<ll> v(n),w(n);
    for(ll i=0;i<n;i++) cin >> v[i] >> w[i];
    vector dp(n+1,vector<pair<ll,mint>>(20001,{-inf,0}));
    dp[0][10000]={0,1};

    for(ll i=0;i<n;i++){
        for(ll j=0;j<=20000;j++){
            dp[i+1][j]=calc(dp[i+1][j],dp[i][j]);
            if(0<=j+w[i]&&j+w[i]<=20000){
                dp[i+1][j+w[i]]=calc(dp[i+1][j+w[i]],dp[i][j],v[i]);
            }
        }
    }

    ll mxv=-inf;
    mint cnt=0;

    for(ll j=0;j<=W+10000;j++){
        auto[v,c]=dp[n][j];
        if(mxv>v) continue;
        if(mxv==v) cnt+=c;
        if(mxv<v){
            cnt=c;
            mxv=v;
        }
    }

    cout << mxv << " " << cnt.val() << endl;
    return 0;
    
}
0