結果

問題 No.54 Happy Hallowe'en
ユーザー nebukuro09nebukuro09
提出日時 2017-03-17 13:22:41
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 674 bytes
コンパイル時間 1,529 ms
コンパイル使用メモリ 164,452 KB
実行使用メモリ 395,520 KB
最終ジャッジ日時 2024-07-04 13:41:11
合計ジャッジ時間 18,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 277 ms
394,752 KB
testcase_01 AC 283 ms
394,752 KB
testcase_02 AC 280 ms
394,752 KB
testcase_03 AC 285 ms
394,880 KB
testcase_04 AC 478 ms
394,880 KB
testcase_05 AC 673 ms
395,008 KB
testcase_06 AC 955 ms
395,136 KB
testcase_07 AC 1,373 ms
395,136 KB
testcase_08 AC 1,922 ms
395,264 KB
testcase_09 AC 2,652 ms
395,520 KB
testcase_10 AC 278 ms
394,880 KB
testcase_11 AC 280 ms
394,880 KB
testcase_12 AC 2,085 ms
395,392 KB
testcase_13 AC 3,271 ms
395,264 KB
testcase_14 AC 280 ms
394,752 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 283 ms
394,624 KB
testcase_18 AC 285 ms
394,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for (int i=0;i<(n);i++)

int N, T_MAX;
vector<pair<int, int> > VT;
int mem[10010][10010];

int dp(int n, int v) {
    if (n >= N) return v;
    if (v >= T_MAX) return v;
    if (mem[n][v] >= 0) return mem[n][v];
    if (v >= VT[n].first) return mem[n][v] = dp(n+1, v);
    else return mem[n][v] = max(dp(n+1, v), dp(n+1, v+VT[n].second));
}

int main() {
    cin >> N;
    REP(i, N) {
        int v, t;
        cin >> v >> t;
        VT.push_back(make_pair(t, v));
    }

    sort(VT.begin(), VT.end());
    T_MAX = VT[N-1].first;
    REP(i, 10010) REP(j, 10010) mem[i][j] = -1;
    cout << dp(0, 0) << endl;
}
0