結果

問題 No.777 再帰的ケーキ
ユーザー ooaiuooaiu
提出日時 2024-11-29 15:30:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,520 bytes
コンパイル時間 3,332 ms
コンパイル使用メモリ 264,040 KB
実行使用メモリ 22,248 KB
最終ジャッジ日時 2024-11-29 15:30:43
合計ジャッジ時間 6,739 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 WA -
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 WA -
testcase_19 AC 2 ms
6,816 KB
testcase_20 WA -
testcase_21 AC 3 ms
6,820 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 3 ms
6,820 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 268 ms
22,172 KB
testcase_29 AC 254 ms
22,228 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

#include <atcoder/segtree>
using S = int64_t;
S op(S a, S b) { return max(a, b); }
S e() { return 0; }
template <class T>
vector<T> compressed(const vector<T>& A) {
    vector<T> cc;
    for (const auto& x : A) cc.push_back(x);
    sort(cc.begin(), cc.end());
    cc.erase(unique(cc.begin(), cc.end()), cc.end());
    vector<T> res(A.size());
    for (unsigned i{}; i < A.size(); i++) res[i] = distance(cc.begin(), lower_bound(cc.begin(), cc.end(), A[i]));
    return res;
}
void solve() {
    int N;
    cin >> N;
    vector<int> A(N), B(N), C(N);
    for (int i = 0; i < N; i++) cin >> A[i] >> B[i] >> C[i];
    A = compressed(A);
    B = compressed(B);
    vector<vector<pair<int, int>>> Qs(N);
    for (int i = 0; i < N; i++) Qs[A[i]].push_back({B[i], C[i]});
    atcoder::segtree<S, op, e> seg(N);
    for (int i = N; i--; )
        if (!Qs[i].empty()) {
            vector<pair<int, int>> res;
            res.reserve(Qs[i].size());
            for (const auto& [b, c] : Qs[i]) {
                S val = seg.prod(b + 1, N);
                res.push_back({val + c, b});
            }
            for(const auto&[val, id]: res) {
                seg.set(id, val);
            }
        }
    cout << seg.all_prod() << endl;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0