結果

問題 No.54 Happy Hallowe'en
ユーザー mamekin
提出日時 2015-01-15 21:59:19
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 1,035 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 98,540 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 17:11:02
合計ジャッジ時間 2,219 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
using namespace std;

int main()
{
    int n;
    cin >> n;
    vector<pair<int, int> > v(n);
    for(int i=0; i<n; ++i)
        cin >> v[i].first >> v[i].second;
    sort(v.begin(), v.end(), [](const pair<int, int>& x, const pair<int, int>& y){ return x.first + x.second < y.first + y.second; });

    vector<bool> dp(10000, false);
    dp[0] = true;
    int ret = 0;
    for(int i=0; i<n; ++i){
        for(int j=v[i].second-1; j>=0; --j){
            if(!dp[j])
                continue;

            int k = j + v[i].first;
            ret = max(ret, k);
            if(k < 10000)
                dp[k] = true;
        }
    }
    cout << ret << endl;

    return 0;
}
0