結果

問題 No.54 Happy Hallowe'en
ユーザー kimiyuki
提出日時 2017-01-03 20:05:07
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 25 ms / 5,000 ms
コード長 975 bytes
コンパイル時間 1,600 ms
コンパイル使用メモリ 87,812 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-16 06:40:04
合計ジャッジ時間 2,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <numeric>
#include <bitset>
#include <memory>
#define repeat(i,n) for (int i = 0; (i) < int(n); ++(i))
#define whole(f,x,...) ([&](decltype((x)) whole) { return (f)(begin(whole), end(whole), ## __VA_ARGS__); })(x)
using namespace std;
int main() {
    int n; cin >> n;
    vector<int> v(n), t(n); repeat (i,n) cin >> v[i] >> t[i];
    vector<int> ix(n); whole(iota, ix, 0);
    whole(iota, ix, 0);
    whole(sort, ix, [&](int i, int j) { return v[i] + t[i] < v[j] + t[j]; });
    auto dp = make_unique<bitset<2*10000+1> >();
    (*dp)[0] = true;
    for (int i : ix) {
        auto it = make_unique<bitset<2*10000+1> >();
        it->flip();
        *it <<= t[i];
        it->flip();
        *it &= *dp;
        *it <<= v[i];
        *dp |= *it;
    }
    for (int i = dp->size() - 1; i >= 0; -- i) {
        if ((*dp)[i]) {
            cout << i << endl;
            break;
        }
    }
    return 0;
}
0