結果
問題 | No.2232 Miser's Gift |
ユーザー | ttkkggww |
提出日時 | 2023-03-03 21:31:07 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 110 ms / 2,000 ms |
コード長 | 599 bytes |
コンパイル時間 | 4,405 ms |
コンパイル使用メモリ | 265,448 KB |
実行使用メモリ | 82,176 KB |
最終ジャッジ日時 | 2024-09-17 22:23:29 |
合計ジャッジ時間 | 10,239 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 55 |
ソースコード
#include<bits/stdc++.h> using namespace std; #include<atcoder/all> using namespace atcoder; using ll = long long; using P = pair<ll,ll>; vector<P> vpii; int n,w; ll dp[101][101010]; void solve(){ for(int i =0;i<n;i++){ auto [wi,vi] = vpii[i]; for(int j = 0;j<=w;j++){ dp[i+1][j] = max(dp[i+1][j],dp[i][j]); if(j-wi>=0) dp[i+1][j] = max(dp[i+1][j],dp[i][j-wi]+vi); } } for(int i = w-1;i>=0;i--){ cout<<dp[n][w]-dp[n][i]+1<<'\n'; } } signed main(){ cin.tie(nullptr); ios::sync_with_stdio(false); cin >> n >> w; vpii.resize(n); for(auto &[l,r]:vpii)cin>>l>>r; solve(); }