結果

問題 No.992 最長増加部分列の数え上げ
ユーザー pockynypockyny
提出日時 2020-03-19 18:34:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 1,047 bytes
コンパイル時間 929 ms
コンパイル使用メモリ 78,300 KB
実行使用メモリ 12,868 KB
最終ジャッジ日時 2024-05-08 03:24:40
合計ジャッジ時間 10,085 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 67 ms
7,168 KB
testcase_05 AC 49 ms
6,144 KB
testcase_06 AC 84 ms
7,936 KB
testcase_07 AC 61 ms
6,784 KB
testcase_08 AC 32 ms
5,376 KB
testcase_09 AC 60 ms
6,656 KB
testcase_10 AC 83 ms
7,936 KB
testcase_11 AC 111 ms
9,216 KB
testcase_12 AC 22 ms
5,376 KB
testcase_13 AC 56 ms
6,656 KB
testcase_14 AC 57 ms
6,656 KB
testcase_15 AC 22 ms
5,376 KB
testcase_16 AC 165 ms
11,904 KB
testcase_17 AC 31 ms
5,376 KB
testcase_18 AC 56 ms
6,528 KB
testcase_19 AC 111 ms
9,088 KB
testcase_20 AC 180 ms
12,840 KB
testcase_21 AC 188 ms
12,672 KB
testcase_22 AC 177 ms
12,800 KB
testcase_23 AC 186 ms
12,800 KB
testcase_24 AC 177 ms
12,868 KB
testcase_25 AC 178 ms
12,800 KB
testcase_26 AC 182 ms
12,800 KB
testcase_27 AC 184 ms
12,672 KB
testcase_28 AC 186 ms
12,860 KB
testcase_29 AC 184 ms
12,800 KB
testcase_30 AC 202 ms
12,800 KB
testcase_31 AC 201 ms
12,672 KB
testcase_32 AC 197 ms
12,672 KB
testcase_33 AC 198 ms
12,856 KB
testcase_34 AC 195 ms
12,856 KB
testcase_35 AC 202 ms
12,672 KB
testcase_36 AC 201 ms
12,800 KB
testcase_37 AC 201 ms
12,752 KB
testcase_38 AC 199 ms
12,800 KB
testcase_39 AC 199 ms
12,672 KB
testcase_40 AC 194 ms
12,800 KB
testcase_41 AC 194 ms
12,672 KB
testcase_42 AC 194 ms
12,796 KB
testcase_43 AC 193 ms
12,800 KB
testcase_44 AC 195 ms
12,800 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