結果
| 問題 |
No.2093 Shio Ramen
|
| コンテスト | |
| ユーザー |
Haa
|
| 提出日時 | 2022-10-07 21:34:59 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 767 bytes |
| コンパイル時間 | 1,619 ms |
| コンパイル使用メモリ | 168,812 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-12 06:25:10 |
| 合計ジャッジ時間 | 2,342 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 30 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
template<typename T> bool chmax(T &x, const T &y) {return (x<y)?(x=y,true):false;};
template<typename T> bool chmin(T &x, const T &y) {return (x>y)?(x=y,true):false;};
constexpr ll MOD=998244353;
constexpr ll INF=2e18;
int main(){
int n, x; cin >> n >> x;
VI s(n), a(n);
REP(i,n) cin >> s[i] >> a[i];
VI dp(x+1,0);
REP(i,n){
for(int j=x;j>=0;j--){
if(j+s[i]<=x)
chmax(dp[j+s[i]],dp[j]+a[i]);
}
}
ll ans=0;
REP(i,x+1) chmax(ans,dp[i]);
cout << ans << endl;
return 0;
}
Haa