結果

問題 No.2093 Shio Ramen
ユーザー hassybirobirohassybirobiro
提出日時 2022-10-07 21:38:23
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 1,768 bytes
コンパイル時間 2,676 ms
コンパイル使用メモリ 203,656 KB
実行使用メモリ 11,072 KB
最終ジャッジ日時 2023-09-03 00:51:25
合計ジャッジ時間 3,653 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 3 ms
4,380 KB
testcase_10 AC 6 ms
8,328 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 3 ms
4,380 KB
testcase_15 AC 5 ms
6,692 KB
testcase_16 AC 3 ms
4,664 KB
testcase_17 AC 3 ms
4,376 KB
testcase_18 AC 9 ms
10,352 KB
testcase_19 AC 6 ms
7,832 KB
testcase_20 AC 4 ms
5,724 KB
testcase_21 AC 5 ms
6,432 KB
testcase_22 AC 5 ms
6,512 KB
testcase_23 AC 9 ms
11,024 KB
testcase_24 AC 10 ms
11,072 KB
testcase_25 AC 10 ms
10,988 KB
testcase_26 AC 9 ms
10,924 KB
testcase_27 AC 9 ms
11,004 KB
testcase_28 AC 9 ms
11,016 KB
testcase_29 AC 9 ms
10,916 KB
testcase_30 AC 9 ms
10,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <sys/time.h>

using namespace std;


using ll = long long;
using ull = unsigned long long;
using ld = long double;
using vi = vector<int>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
using vl = vector<long>;
using vvl = vector<vl>;
using vll = vector<ll>;
using vvll = vector<vll>;
using vb = vector<bool>;
using vvb = vector<vb>;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using vpii = vector<pii>;
using vpll = vector<pll>;
using vstr = vector<string>;
constexpr ll INF_LL=1LL<<62;
constexpr int INF_I=1LL<<30;
#define rep(i,n) for(int i=0; i<((int)(n)); i++)
#define reps(i,n) for(int i=1; i<=((int)(n)); i++)
#define vector_cin(x) for(auto &n : (x)) cin >> n
#define ALL(x) (x).begin(), (x).end()
#define YesNo(x) ((x) ? "Yes": "No")
#define pb emplace_back
#define to_lower(S) transform(ALL((S)), (S).begin(), ::tolower)
#define to_upper(S) transform(ALL((S)), (S).begin(), ::toupper)
template <typename T>
bool chmax(T &a, const T& b) {if (a < b){a = b;return true;}return false;}

template <typename T>
bool chmin(T &a, const T& b) {if (a > b){a = b;return true;}return false;}
ll ceilint(ll x, ll y) {return (x + y - 1) / y;}
void Main();
int main() {std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);std::cout << std::fixed << std::setprecision(15);Main();return 0;}

//-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-

void Main() {
    ll N, I;
    cin >> N >> I;
    vll S(N), A(N);
    rep(i, N) cin >> S[i] >> A[i];
    vvll dp(N + 2, vll(I + 2, 0));
    rep(i, N) {
        rep(j, I + 1) {
            if (j >= S[i]) dp[i + 1][j] = max(dp[i][j - S[i]] + A[i], dp[i][j]);
            else dp[i + 1][j] = dp[i][j]; 
        }
    }
    cout << dp[N][I] << endl;
}
0