結果

問題 No.1826 Fruits Collecting
ユーザー torisasami4torisasami4
提出日時 2021-11-14 21:39:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 1,457 bytes
コンパイル時間 4,221 ms
コンパイル使用メモリ 279,032 KB
実行使用メモリ 48,232 KB
最終ジャッジ日時 2024-06-09 13:32:42
合計ジャッジ時間 14,853 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 168 ms
20,784 KB
testcase_06 AC 300 ms
33,752 KB
testcase_07 AC 191 ms
24,712 KB
testcase_08 AC 16 ms
6,940 KB
testcase_09 AC 286 ms
32,000 KB
testcase_10 AC 181 ms
23,856 KB
testcase_11 AC 168 ms
21,844 KB
testcase_12 AC 57 ms
11,388 KB
testcase_13 AC 26 ms
7,296 KB
testcase_14 AC 43 ms
9,264 KB
testcase_15 AC 534 ms
46,888 KB
testcase_16 AC 540 ms
46,888 KB
testcase_17 AC 529 ms
48,232 KB
testcase_18 AC 530 ms
47,392 KB
testcase_19 AC 521 ms
47,908 KB
testcase_20 AC 541 ms
46,756 KB
testcase_21 AC 538 ms
48,036 KB
testcase_22 AC 525 ms
46,752 KB
testcase_23 AC 528 ms
47,700 KB
testcase_24 AC 534 ms
48,228 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 80 ms
13,764 KB
testcase_31 AC 186 ms
24,372 KB
testcase_32 AC 75 ms
13,252 KB
testcase_33 AC 334 ms
37,972 KB
testcase_34 AC 260 ms
29,632 KB
testcase_35 AC 46 ms
9,240 KB
testcase_36 AC 331 ms
38,524 KB
testcase_37 AC 211 ms
27,792 KB
testcase_38 AC 136 ms
21,780 KB
testcase_39 AC 114 ms
25,968 KB
testcase_40 AC 172 ms
30,036 KB
testcase_41 AC 30 ms
9,224 KB
testcase_42 AC 6 ms
6,944 KB
testcase_43 AC 2 ms
6,940 KB
testcase_44 AC 2 ms
6,944 KB
testcase_45 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
typedef long long ll;

#define pb(...) emplace_back(__VA_ARGS__)
#define all(x) x.begin(), x.end()
#define rep(i, n) for (int i = 0; i < (n); i++)

ll f(ll a, ll b) {
    return max(a, b);
}

ll e() {
    return (ll)-1e15;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    int n;
    cin >> n;
    assert(1 <= n && n <= (int)2e5);
    vector<ll> t(n), x(n), v(n);
    rep(i, n) cin >> t[i] >> x[i] >> v[i];
    rep(i,n) assert(1 <= t[i] && t[i] <= (int)1e9);
    rep(i,n) assert((int)-1e9 <= x[i] && x[i] <= (int)1e9);
    rep(i,n) assert(1 <= v[i] && v[i] <= (int)1e9);
    vector<ll> a(n), b(n);
    rep(i, n) a[i] = t[i] + x[i], b[i] = t[i] - x[i];
    map<ll, int> ma, mb;
    ma[0] = 1, mb[0] = 1;
    rep(i, n) ma[a[i]] = 1, mb[b[i]] = 1;
    int sz_a = 0, sz_b = 0;
    for (auto &e : ma)
        e.second = sz_a++;
    for (auto &e : mb)
        e.second = sz_b++;
    rep(i, n) a[i] = ma[a[i]], b[i] = mb[b[i]];
    segtree<ll, f, e> seg(sz_b);
    vector<pair<ll, pair<ll, ll>>> vec;
    rep(i, n) if (a[i] >= ma[0]) vec.push_back({a[i], {b[i], v[i]}});
    sort(all(vec));
    seg.set(mb[0], 0);
    ll ans = 0;
    for (auto [p, q] : vec) {
        auto [nb, nv] = q;
        ll val = seg.prod(0, nb + 1) + nv;
        seg.set(nb, max(seg.get(nb), val));
    }
    cout << seg.prod(0, sz_b) << endl;
}
0