結果

問題 No.777 再帰的ケーキ
ユーザー t98slidert98slider
提出日時 2023-08-09 04:47:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 4,280 ms
コンパイル使用メモリ 235,816 KB
実行使用メモリ 12,128 KB
最終ジャッジ日時 2024-04-26 19:47:35
合計ジャッジ時間 6,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 165 ms
11,880 KB
testcase_29 AC 167 ms
12,040 KB
testcase_30 AC 180 ms
12,128 KB
testcase_31 AC 174 ms
11,904 KB
testcase_32 AC 107 ms
11,952 KB
testcase_33 AC 56 ms
5,504 KB
testcase_34 AC 86 ms
6,400 KB
testcase_35 AC 157 ms
9,088 KB
testcase_36 AC 105 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ll op(ll lhs, ll rhs){return max(lhs, rhs);}
ll e(){return 0;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, x, y, z;
    cin >> n;
    vector<tuple<int,int,int>> a(n);
    vector<int> cb(n);
    for(int i = 0; i < n; i++){
        cin >> x >> y >> z;
        a[i] = make_tuple(x, -y, z);
        cb[i] = y;
    }
    sort(cb.begin(), cb.end());
    cb.erase(unique(cb.begin(), cb.end()), cb.end());
    sort(a.begin(), a.end());
    atcoder::segtree<ll, op, e> seg(cb.size());
    for(int i = 0; i < n; i++){
        tie(x, y, z) = a[i];
        y = lower_bound(cb.begin(), cb.end(), -y) - cb.begin();
        ll v = seg.prod(0, y);
        seg.set(y, max(seg.get(y), v + z));
    }
    cout << seg.all_prod() << '\n';
}
0