結果

問題 No.2866 yuusaan's Knapsack
ユーザー umezoumezo
提出日時 2024-08-30 22:55:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,312 bytes
コンパイル時間 3,012 ms
コンパイル使用メモリ 248,768 KB
実行使用メモリ 56,104 KB
最終ジャッジ日時 2024-08-30 22:55:11
合計ジャッジ時間 4,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
55,860 KB
testcase_01 AC 15 ms
55,988 KB
testcase_02 AC 16 ms
55,944 KB
testcase_03 AC 16 ms
55,900 KB
testcase_04 AC 16 ms
55,968 KB
testcase_05 AC 15 ms
55,892 KB
testcase_06 AC 24 ms
55,976 KB
testcase_07 WA -
testcase_08 AC 22 ms
55,896 KB
testcase_09 AC 22 ms
56,008 KB
testcase_10 AC 23 ms
55,928 KB
testcase_11 AC 20 ms
55,984 KB
testcase_12 AC 21 ms
56,040 KB
testcase_13 AC 22 ms
55,860 KB
testcase_14 AC 21 ms
56,020 KB
testcase_15 AC 23 ms
55,876 KB
testcase_16 AC 23 ms
55,868 KB
testcase_17 AC 23 ms
55,928 KB
testcase_18 AC 21 ms
56,052 KB
testcase_19 AC 24 ms
56,104 KB
testcase_20 AC 23 ms
56,044 KB
testcase_21 AC 23 ms
55,896 KB
testcase_22 AC 22 ms
55,864 KB
testcase_23 AC 25 ms
56,040 KB
testcase_24 AC 21 ms
55,996 KB
testcase_25 AC 24 ms
56,080 KB
testcase_26 AC 21 ms
55,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
template <class T> using V=vector<T>;
template <class T> using VV=V<V<T>>;

const int INF=1e3;
const int MOD=998244353;
const int geta=10000;
pair<ll,ll> dp[111][30303];

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  rep(i,111) rep(j,30303) dp[i][j]={-INF,-INF};
  
  ll n,w;
  cin>>n>>w;
  V<ll> V(n),W(n);
  rep(i,n) cin>>V[i]>>W[i];
  dp[0][geta]={0,1};
  rep(i,n){
    rep(j,30303){
      if(dp[i][j].first==-INF) continue;
      
      if(dp[i+1][j].first>dp[i][j].first) ;
      else if(dp[i+1][j].first<dp[i][j].first) dp[i+1][j]=dp[i][j];
      else dp[i+1][j].second=(dp[i+1][j].second+dp[i][j].second)%MOD;
      
      if(j+W[i]>=30303) continue;
      if(dp[i+1][j+W[i]].first>dp[i][j].first+V[i]) continue;
      else if(dp[i+1][j+W[i]].first<dp[i][j].first+V[i]) dp[i+1][j+W[i]]={dp[i][j].first+V[i],dp[i][j].second};
      else dp[i+1][j+W[i]].second=(dp[i+1][j+W[i]].second+dp[i][j].second)%MOD;
    }
  }
  ll ma=-INF;
  for(int j=0;j<=geta+w;j++) ma=max(ma,dp[n][j].first);
  ll ans=0;
  for(int j=0;j<=geta+w;j++){
    if(dp[n][j].first==ma) ans=(ans+dp[n][j].second)%MOD;
  }
  cout<<ma<<" "<<ans<<endl;
 
  return 0;
}
0