結果

問題 No.992 最長増加部分列の数え上げ
ユーザー firiexpfiriexp
提出日時 2020-02-14 22:03:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 2,709 bytes
コンパイル時間 1,254 ms
コンパイル使用メモリ 106,068 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-04-27 15:47:53
合計ジャッジ時間 7,592 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 49 ms
6,016 KB
testcase_05 AC 36 ms
5,376 KB
testcase_06 AC 61 ms
6,016 KB
testcase_07 AC 42 ms
5,888 KB
testcase_08 AC 20 ms
5,376 KB
testcase_09 AC 40 ms
6,016 KB
testcase_10 AC 53 ms
6,144 KB
testcase_11 AC 67 ms
6,272 KB
testcase_12 AC 14 ms
5,376 KB
testcase_13 AC 39 ms
5,760 KB
testcase_14 AC 39 ms
5,888 KB
testcase_15 AC 14 ms
5,376 KB
testcase_16 AC 108 ms
8,832 KB
testcase_17 AC 21 ms
5,376 KB
testcase_18 AC 38 ms
5,888 KB
testcase_19 AC 68 ms
6,144 KB
testcase_20 AC 124 ms
8,960 KB
testcase_21 AC 121 ms
8,960 KB
testcase_22 AC 119 ms
8,960 KB
testcase_23 AC 120 ms
9,088 KB
testcase_24 AC 122 ms
9,088 KB
testcase_25 AC 120 ms
8,960 KB
testcase_26 AC 123 ms
8,960 KB
testcase_27 AC 119 ms
8,832 KB
testcase_28 AC 119 ms
9,004 KB
testcase_29 AC 121 ms
8,832 KB
testcase_30 AC 102 ms
8,916 KB
testcase_31 AC 105 ms
8,960 KB
testcase_32 AC 108 ms
8,960 KB
testcase_33 AC 105 ms
9,088 KB
testcase_34 AC 102 ms
9,080 KB
testcase_35 AC 109 ms
9,088 KB
testcase_36 AC 106 ms
8,960 KB
testcase_37 AC 109 ms
8,968 KB
testcase_38 AC 105 ms
8,960 KB
testcase_39 AC 111 ms
8,960 KB
testcase_40 AC 107 ms
9,088 KB
testcase_41 AC 104 ms
9,012 KB
testcase_42 AC 106 ms
9,072 KB
testcase_43 AC 105 ms
8,960 KB
testcase_44 AC 103 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <limits>
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = unsigned;
using u64 = unsigned long long;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;

template <class M>
struct SegmentTree{
    using T = typename M::T;
    int sz;
    vector<T> seg;
    explicit SegmentTree(int n) {
        sz = 1;
        while(sz < n) sz <<= 1;
        seg.assign(2*sz, M::e());
    }

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

    void build(){
        for (int i = sz-1; i > 0; --i) seg[i] = M::f(seg[2*i], seg[2*i+1]);
    }

    void update(int k, const T &x){
        k += sz;
        seg[k] = x;
        while (k >>= 1) seg[k] = M::f(seg[2*k], seg[2*k+1]);
    }

    T query(int a, int b){
        T l = M::e(), r = M::e();
        for(a += sz, b += sz; a < b; a >>=1, b>>=1){
            if(a & 1) l = M::f(l, seg[a++]);
            if(b & 1) r = M::f(seg[--b], r);
        }
        return M::f(l, r);
    }

    template<typename C>
    int find(int t, C &c, T &val, int k, int l, int r){
        if(r-l == 1){
            val = f(val, seg[k]);
            return c(val) ? k-sz : -1;
        }
        int m = (l+r) >> 1;
        if(m <= t) return find(t, c, val, (k << 1) | 1, m, r);
        if(t <= l && !c(val = f(val, seg[k]))) return -1;
        int lv = find(t, c, val, (k << 1) | 0 , l, m);
        if(~lv) return lv;
        return find(t, c, val, (k << 1) | 1, m, r);
    }

    template<typename C>
    int find(int t, C &c){
        T val = M::e();
        return find(t, c, val, 1, 0, sz);
    }
    T operator[](const int &k) const { return seg[k + sz]; }
};


struct Monoid{
    using T = pair<int, int>;
    static T f(T a, T b) {
        if(a.first != b.first) return max(a, b);
        else return {a.first, (a.second+b.second)%MOD};
    }
    static T e() { return {-1, 0}; }
};

int main() {
    int n;
    cin >> n;
    vector<int> v(n);
    for (auto &&i : v) scanf("%d", &i);
    auto z = v;
    sort(z.begin(), z.end());
    z.erase(unique(z.begin(), z.end()), z.end());
    for (int i = 0; i < n; ++i) {
        v[i] = lower_bound(z.begin(),z.end(), v[i]) - z.begin();
    }
    SegmentTree<Monoid> seg(z.size());
    for (int i = 0; i < n; ++i) {
        auto ret = seg.query(0, v[i]);
        ret.first++;
        if(ret.first == 0) ret.first++, ret.second = 1;
        auto x = seg.query(v[i], v[i]+1);
        seg.update(v[i], Monoid::f(ret, x));
    }
    cout << seg.query(0, z.size()).second << "\n";
    return 0;
}
0