結果

問題 No.844 split game
ユーザー outlineoutline
提出日時 2020-12-20 17:18:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 4,324 bytes
コンパイル時間 1,468 ms
コンパイル使用メモリ 141,208 KB
実行使用メモリ 9,528 KB
最終ジャッジ日時 2023-10-21 10:46:57
合計ジャッジ時間 4,659 ms
ジャッジサーバーID
(参考情報)
judge12 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
5,832 KB
testcase_01 AC 29 ms
8,208 KB
testcase_02 AC 45 ms
6,624 KB
testcase_03 AC 45 ms
8,472 KB
testcase_04 AC 21 ms
5,568 KB
testcase_05 AC 60 ms
8,736 KB
testcase_06 AC 20 ms
5,568 KB
testcase_07 AC 23 ms
7,680 KB
testcase_08 AC 11 ms
4,512 KB
testcase_09 AC 34 ms
5,040 KB
testcase_10 AC 57 ms
7,416 KB
testcase_11 AC 63 ms
9,264 KB
testcase_12 AC 33 ms
4,828 KB
testcase_13 AC 21 ms
4,512 KB
testcase_14 AC 29 ms
6,624 KB
testcase_15 AC 69 ms
9,528 KB
testcase_16 AC 70 ms
9,528 KB
testcase_17 AC 71 ms
9,528 KB
testcase_18 AC 68 ms
9,528 KB
testcase_19 AC 70 ms
9,528 KB
testcase_20 AC 70 ms
9,528 KB
testcase_21 AC 71 ms
9,528 KB
testcase_22 AC 73 ms
9,528 KB
testcase_23 AC 4 ms
4,348 KB
testcase_24 AC 6 ms
4,348 KB
testcase_25 AC 3 ms
4,348 KB
testcase_26 AC 3 ms
4,348 KB
testcase_27 AC 4 ms
4,348 KB
testcase_28 AC 3 ms
4,348 KB
testcase_29 AC 6 ms
4,348 KB
testcase_30 AC 6 ms
4,348 KB
testcase_31 AC 5 ms
4,348 KB
testcase_32 AC 3 ms
4,348 KB
testcase_33 AC 5 ms
4,348 KB
testcase_34 AC 3 ms
4,348 KB
testcase_35 AC 6 ms
4,348 KB
testcase_36 AC 4 ms
4,348 KB
testcase_37 AC 8 ms
4,348 KB
testcase_38 AC 14 ms
4,348 KB
testcase_39 AC 31 ms
5,304 KB
testcase_40 AC 17 ms
6,096 KB
testcase_41 AC 2 ms
4,348 KB
testcase_42 AC 2 ms
4,348 KB
testcase_43 AC 2 ms
4,348 KB
testcase_44 AC 2 ms
4,348 KB
testcase_45 AC 2 ms
4,348 KB
testcase_46 AC 2 ms
4,348 KB
testcase_47 AC 2 ms
4,348 KB
testcase_48 AC 2 ms
4,348 KB
testcase_49 AC 2 ms
4,348 KB
testcase_50 AC 2 ms
4,348 KB
testcase_51 AC 2 ms
4,348 KB
testcase_52 AC 2 ms
4,348 KB
testcase_53 AC 2 ms
4,348 KB
testcase_54 AC 2 ms
4,348 KB
testcase_55 AC 2 ms
4,348 KB
testcase_56 AC 2 ms
4,348 KB
testcase_57 AC 2 ms
4,348 KB
testcase_58 AC 2 ms
4,348 KB
testcase_59 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
using namespace std;

using ll = long long;
using P = pair<int, int>;
constexpr int INF = 1001001001;
constexpr int mod = 1000000007;
// constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

template<typename Monoid>
struct SegmentTree{
    using F = function<Monoid(Monoid, Monoid)>;

    int sz;
    vector<Monoid> seg;

    const F f;
    const Monoid M1;

    SegmentTree(const F f, const Monoid& M1) : f(f), M1(M1) {}

    SegmentTree(int n, const F f, const Monoid &M1) : f(f), M1(M1) {
        sz = 1;
        while(sz < n)   sz <<= 1;
        seg.assign(2 * sz, M1);
    }

    void resize(int n){
        sz = 1;
        while(sz < n)   sz <<= 1;
        seg.assign(2 * sz, M1);
    }

    void set(int k, const Monoid &x){
        seg[k + sz] = x;
    }

    void build(){
        for(int k = sz - 1; k > 0; --k){
            seg[k] = f(seg[k << 1], seg[k << 1 | 1]);
        }
    }

    void update(int k, const Monoid &x){
        k += sz;
        seg[k] = x;
        while(k >>= 1){
            seg[k] = f(seg[k << 1], seg[k << 1 | 1]);
        }
    }

    Monoid query(int a, int b){
        Monoid L = M1, R = M1;
        for(a += sz, b += sz; a < b; a >>= 1, b >>= 1){
            if(a & 1)   L = f(L, seg[a++]);
            if(b & 1)   R = f(seg[--b], R);
        }
        return f(L, R);
    }

    Monoid operator[](const int &k) const{
        return seg[k + sz];
    }

    // (type = true) : find_last
    // (type = false) : find_first
    template<typename C>
    int find_subtree(int a, const C &check, Monoid &M, bool type){
        while(a < sz){
            Monoid nxt = type ? f(seg[a << 1 | type], M) : f(M, seg[a << 1 | type]);
            if(check(nxt))  a = a << 1 | type;
            else M = nxt, a = 2 * a + 1 - type;
        }
        return a - sz;
    }

    template<typename C>
    int find_first(int a, const C &check){
        Monoid L = M1;
        if(a <= 0){
            if(check(f(L, seg[1]))) return find_subtree(1, check, L, false);
            return -1;
        }
        int b = sz;
        for(a += sz, b += sz; a < b; a >>= 1, b >>= 1){
            if(a & 1){
                Monoid nxt = f(L, seg[a]);
                if(check(nxt))  return find_subtree(a, check, L, false);
                L = nxt;
                ++a;
            }
        }
        return -1;
    }

    template<typename C>
    int find_last(int b, const C &check){
        Monoid R = M1;
        if(b >= sz){
            if(check(f(seg[1], R))) return find_subtree(1, check, R, true);
            return -1;
        }
        int a = sz;
        for(b += sz; a < b; a >>= 1, b >>= 1){
            if(b & 1){
                Monoid nxt = f(seg[--b], R);
                if(check(nxt))  return find_subtree(b, check, R, true);
                R = nxt;
            }
        }
        return -1;
    }
};

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

    int N, M, A;
    cin >> N >> M >> A;
    vector<vector<P>> rights(N);
    for(int i = 0; i < M; ++i){
        int l, r, p;
        cin >> l >> r >> p;
        rights[l - 1].emplace_back(r, p);
    }

    constexpr ll inf = 1e+17;
    SegmentTree<ll> seg(N + 1, [](ll a, ll b){return max(a, b);}, -inf);
    seg.update(0, 0LL);
    for(int l = 0; l < N; ++l){
        ll score = seg.query(0, l) - A;
        if(seg[l] > score)  score = seg[l];
        for(auto [r, p] : rights[l]){
            ll next_score = score + p + (r == N ? 0 : -A);
            if(next_score > seg[r]){
                seg.update(r, next_score);
            }
        }
    }

    cout << seg.query(0, N + 1) << endl;

    return 0;
}
0