結果
問題 | No.992 最長増加部分列の数え上げ |
ユーザー | fura |
提出日時 | 2020-02-18 12:41:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,141 bytes |
コンパイル時間 | 2,298 ms |
コンパイル使用メモリ | 208,712 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-06 15:30:27 |
合計ジャッジ時間 | 9,483 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 22 ms
6,816 KB |
testcase_05 | AC | 17 ms
6,816 KB |
testcase_06 | AC | 28 ms
6,816 KB |
testcase_07 | AC | 21 ms
6,816 KB |
testcase_08 | AC | 11 ms
6,816 KB |
testcase_09 | AC | 20 ms
6,816 KB |
testcase_10 | AC | 27 ms
6,816 KB |
testcase_11 | RE | - |
testcase_12 | AC | 9 ms
6,816 KB |
testcase_13 | AC | 23 ms
6,816 KB |
testcase_14 | AC | 20 ms
6,816 KB |
testcase_15 | AC | 8 ms
6,820 KB |
testcase_16 | RE | - |
testcase_17 | AC | 13 ms
6,816 KB |
testcase_18 | AC | 21 ms
6,820 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; class mint{ static const int MOD=1e9+7; int x; public: mint():x(0){} mint(long long y){ x=y%MOD; if(x<0) x+=MOD; } mint& operator+=(const mint& m){ x+=m.x; if(x>=MOD) x-=MOD; return *this; } mint& operator-=(const mint& m){ x-=m.x; if(x< 0) x+=MOD; return *this; } mint& operator*=(const mint& m){ x=1LL*x*m.x%MOD; return *this; } mint& operator/=(const mint& m){ return *this*=inverse(m); } mint operator+(const mint& m)const{ return mint(*this)+=m; } mint operator-(const mint& m)const{ return mint(*this)-=m; } mint operator*(const mint& m)const{ return mint(*this)*=m; } mint operator/(const mint& m)const{ return mint(*this)/=m; } friend mint inverse(const mint& m){ int a=m.x,b=MOD,u=1,v=0; while(b>0){ int t=a/b; a-=t*b; swap(a,b); u-=t*v; swap(u,v); } return u; } friend istream& operator>>(istream& is,mint& m){ long long t; is>>t; m=mint(t); return is; } friend ostream& operator<<(ostream& os,const mint& m){ return os<<m.x; } int to_int()const{ return x; } }; int main(){ int n,a[100000]; scanf("%d",&n); rep(i,n) scanf("%d",&a[i]); int dp1[100000]; vector<int> lis; rep(i,n){ auto it=lower_bound(lis.begin(),lis.end(),a[i]); if(it!=lis.end()){ *it=a[i]; dp1[i]=it-lis.begin(); } else{ lis.emplace_back(a[i]); dp1[i]=lis.size()-1; } } int len=lis.size(); vector<vector<int>> V(len); rep(i,n) V[dp1[i]].emplace_back(i); mint dp2[2][100000]; rep(i,V[0].size()) dp2[0][V[0][i]]=1; int curr=0,next=1; rep(t,len-1){ if(t>0) rep(i,V[t-1].size()) dp2[next][V[t-1][i]]=0; vector<int> W(V[t].size()); vector<mint> sum(V[t].size()+1); rep(i,V[t].size()){ int u=V[t][i]; W[i]=-a[u]; sum[i+1]=sum[i]+dp2[curr][u]; } rep(i,V[t+1].size()){ int u=V[t+1][i]; int idx_r=lower_bound(V[t].begin(),V[t].end(),u)-V[t].begin(); int idx_l=upper_bound(W.begin(),W.end(),-a[u])-W.begin(); dp2[next][u]=sum[idx_r]-sum[idx_l]; } swap(curr,next); } mint ans=0; rep(i,V[len-1].size()) ans+=dp2[curr][V[len-1][i]]; printf("%d\n",ans.to_int()); return 0; }