結果

問題 No.992 最長増加部分列の数え上げ
ユーザー pockynypockyny
提出日時 2020-03-19 18:34:10
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 1,047 bytes
コンパイル時間 915 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 13,024 KB
最終ジャッジ日時 2024-12-14 03:25:54
合計ジャッジ時間 10,653 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 71 ms
7,168 KB
testcase_05 AC 51 ms
6,820 KB
testcase_06 AC 90 ms
9,940 KB
testcase_07 AC 63 ms
7,976 KB
testcase_08 AC 33 ms
7,272 KB
testcase_09 AC 64 ms
6,820 KB
testcase_10 AC 89 ms
9,420 KB
testcase_11 AC 115 ms
11,408 KB
testcase_12 AC 22 ms
6,820 KB
testcase_13 AC 60 ms
8,244 KB
testcase_14 AC 60 ms
6,824 KB
testcase_15 AC 23 ms
6,816 KB
testcase_16 AC 176 ms
12,412 KB
testcase_17 AC 33 ms
6,816 KB
testcase_18 AC 61 ms
6,820 KB
testcase_19 AC 114 ms
8,960 KB
testcase_20 AC 195 ms
12,804 KB
testcase_21 AC 191 ms
12,872 KB
testcase_22 AC 193 ms
12,804 KB
testcase_23 AC 193 ms
12,832 KB
testcase_24 AC 198 ms
12,692 KB
testcase_25 AC 191 ms
12,884 KB
testcase_26 AC 193 ms
12,840 KB
testcase_27 AC 193 ms
12,836 KB
testcase_28 AC 190 ms
12,792 KB
testcase_29 AC 191 ms
12,872 KB
testcase_30 AC 202 ms
12,852 KB
testcase_31 AC 205 ms
12,836 KB
testcase_32 AC 205 ms
12,892 KB
testcase_33 AC 203 ms
12,848 KB
testcase_34 AC 201 ms
12,920 KB
testcase_35 AC 206 ms
12,808 KB
testcase_36 AC 205 ms
12,784 KB
testcase_37 AC 204 ms
13,024 KB
testcase_38 AC 203 ms
12,808 KB
testcase_39 AC 205 ms
12,908 KB
testcase_40 AC 199 ms
12,960 KB
testcase_41 AC 199 ms
12,712 KB
testcase_42 AC 200 ms
12,676 KB
testcase_43 AC 199 ms
12,788 KB
testcase_44 AC 198 ms
12,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>

using namespace std;
typedef long long ll;
typedef pair<ll,ll> pll;
ll n,mod = 1000000007;
pll seg[400010],INF = {0,1};
pll cal(pll p, pll q){
    if(p.first>q.first) return p;
    if(p.first<q.first) return q;
    pll r = {p.first,(p.second + q.second)%mod};
    return r;
}

void init(int n){
    for(int i=n - 1;i>0;i--){
        seg[i] = cal(seg[i<<1],seg[i<<1|1]);
    }
}

void update(pll val,int p){
    for(seg[p += n] = val;p>1;p>>=1){
        seg[p>>1] = cal(seg[p],seg[p^1]);
    }
}

pll query(int l,int r){
    pll res = INF;
    for(l += n,r += n; l<r;l>>=1,r>>=1){
        if(l&1) res = cal(res,seg[l++]);
        if(r&1) res = cal(res,seg[--r]);
    }
    return res;
}

pll a[200010];
int main(){
    int i;
    cin >> n;
    for(i=0;i<n;i++){
        ll b; cin >> b;
        a[i] = {b,-i};
    }
    sort(a,a + n);
    for(i=0;i<n;i++){
        int ind = -a[i].second;
        pll p = query(0,ind);
        p.first++;
        update(p,ind);
    }
    cout << query(0,n).second << endl;
}
0