結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 3 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 3 ms
6,820 KB
testcase_25 AC 3 ms
6,816 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 159 ms
12,068 KB
testcase_29 AC 161 ms
12,016 KB
testcase_30 AC 169 ms
12,056 KB
testcase_31 AC 171 ms
11,976 KB
testcase_32 AC 103 ms
12,004 KB
testcase_33 AC 55 ms
6,816 KB
testcase_34 AC 82 ms
6,816 KB
testcase_35 AC 154 ms
9,216 KB
testcase_36 AC 103 ms
12,020 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