結果

問題 No.992 最長増加部分列の数え上げ
ユーザー %20%20
提出日時 2020-02-05 23:55:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 214,116 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-09-25 06:58:20
合計ジャッジ時間 5,668 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 20 ms
5,376 KB
testcase_05 AC 16 ms
5,376 KB
testcase_06 AC 24 ms
5,376 KB
testcase_07 AC 18 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 19 ms
5,376 KB
testcase_10 AC 24 ms
5,376 KB
testcase_11 AC 30 ms
5,376 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 18 ms
5,376 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 8 ms
5,376 KB
testcase_16 AC 46 ms
6,912 KB
testcase_17 AC 10 ms
5,376 KB
testcase_18 AC 17 ms
5,376 KB
testcase_19 AC 30 ms
5,376 KB
testcase_20 AC 50 ms
7,168 KB
testcase_21 AC 50 ms
7,040 KB
testcase_22 AC 50 ms
7,168 KB
testcase_23 AC 50 ms
7,168 KB
testcase_24 AC 50 ms
7,168 KB
testcase_25 AC 50 ms
7,040 KB
testcase_26 AC 50 ms
7,168 KB
testcase_27 AC 50 ms
6,944 KB
testcase_28 AC 50 ms
7,040 KB
testcase_29 AC 50 ms
7,168 KB
testcase_30 AC 34 ms
6,168 KB
testcase_31 AC 35 ms
6,132 KB
testcase_32 AC 34 ms
6,012 KB
testcase_33 AC 34 ms
6,300 KB
testcase_34 AC 34 ms
5,884 KB
testcase_35 AC 33 ms
6,596 KB
testcase_36 AC 32 ms
6,596 KB
testcase_37 AC 33 ms
6,728 KB
testcase_38 AC 33 ms
6,472 KB
testcase_39 AC 33 ms
6,652 KB
testcase_40 AC 35 ms
6,748 KB
testcase_41 AC 34 ms
6,864 KB
testcase_42 AC 34 ms
6,568 KB
testcase_43 AC 34 ms
6,524 KB
testcase_44 AC 35 ms
6,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define all(v) v.begin(),v.end()

const int inf=2e9;
const int MD=1e9+7;

int main(){cin.tie(0);ios::sync_with_stdio(false);
	int N;cin>>N;
	assert(1<=N&&N<=200000);
	vector<int>dp1={-inf};
	vector<vector<int>>dp2={{inf,-inf}};
	vector<vector<long long>>dp4={{0,1}};
	for(int _=0;_<N;++_){
		int A;cin>>A;
		assert(-1000000000<=A&&A<=1000000000);
		int x=lower_bound(all(dp1),A)-dp1.begin();
		if(x==dp1.size()){
			dp1.push_back(A);
			dp2.push_back({inf});
			dp4.push_back({0});
		}else{
			dp1[x]=A;
		}
		dp2[x].push_back(A);
		int y=upper_bound(all(dp2[x-1]),A,greater<int>())-dp2[x-1].begin()-1;
		dp4[x].push_back((dp4[x].back()+dp4[x-1].back()-dp4[x-1][y]+MD)%MD);
	}
	cout<<dp4.back().back()<<"\n";
	return 0;
}
0