結果

問題 No.992 最長増加部分列の数え上げ
ユーザー kotatsugamekotatsugame
提出日時 2020-02-07 06:12:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 792 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 73,868 KB
実行使用メモリ 32,072 KB
最終ジャッジ日時 2024-09-25 07:11:35
合計ジャッジ時間 8,054 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
15,808 KB
testcase_01 AC 7 ms
15,812 KB
testcase_02 AC 7 ms
15,812 KB
testcase_03 AC 7 ms
15,812 KB
testcase_04 AC 73 ms
21,956 KB
testcase_05 AC 55 ms
20,416 KB
testcase_06 AC 88 ms
23,236 KB
testcase_07 AC 66 ms
21,316 KB
testcase_08 AC 38 ms
18,756 KB
testcase_09 AC 67 ms
21,444 KB
testcase_10 AC 89 ms
23,236 KB
testcase_11 AC 110 ms
25,288 KB
testcase_12 AC 28 ms
17,728 KB
testcase_13 AC 63 ms
21,188 KB
testcase_14 AC 63 ms
21,064 KB
testcase_15 AC 28 ms
17,736 KB
testcase_16 AC 168 ms
30,656 KB
testcase_17 AC 38 ms
18,760 KB
testcase_18 AC 63 ms
21,060 KB
testcase_19 AC 109 ms
25,152 KB
testcase_20 AC 183 ms
31,944 KB
testcase_21 AC 186 ms
31,940 KB
testcase_22 AC 187 ms
32,064 KB
testcase_23 AC 185 ms
32,068 KB
testcase_24 AC 186 ms
31,944 KB
testcase_25 AC 183 ms
32,068 KB
testcase_26 AC 185 ms
32,064 KB
testcase_27 AC 182 ms
31,944 KB
testcase_28 AC 186 ms
32,064 KB
testcase_29 AC 183 ms
32,072 KB
testcase_30 AC 175 ms
30,932 KB
testcase_31 AC 173 ms
30,736 KB
testcase_32 AC 170 ms
30,776 KB
testcase_33 AC 174 ms
30,936 KB
testcase_34 AC 174 ms
30,648 KB
testcase_35 AC 171 ms
31,356 KB
testcase_36 AC 173 ms
31,360 KB
testcase_37 AC 175 ms
31,360 KB
testcase_38 AC 172 ms
31,360 KB
testcase_39 AC 168 ms
31,360 KB
testcase_40 AC 173 ms
31,512 KB
testcase_41 AC 171 ms
31,620 KB
testcase_42 AC 172 ms
31,460 KB
testcase_43 AC 167 ms
31,416 KB
testcase_44 AC 171 ms
31,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
int N;
vector<int>s[2<<17];
vector<long>ss[2<<17];
long mod=1e9+7;
int main()
{
	cin>>N;
	for(int i=0;i<=N;i++)
	{
		s[i].push_back(2e9);
		ss[i].push_back(0);
	}
	s[0].push_back(-2e9);
	ss[0].push_back(1);
	for(int i=0;i<N;i++)
	{
		int A;cin>>A;
		int id;
		{
			int l=0,r=N+1;
			while(r-l>1)
			{
				int m=l+r>>1;
				if(s[m].back()>=A)r=m;
				else l=m;
			}
			id=r;
		}
		long now=ss[id-1].back();
		{
			int l=0,r=ss[id-1].size();
			while(r-l>1)
			{
				int m=l+r>>1;
				if(s[id-1][m]>=A)l=m;
				else r=m;
			}
			now-=ss[id-1][l];
		}
		s[id].push_back(A);
		now+=ss[id].back();
		ss[id].push_back((now%mod+mod)%mod);
	}
	for(int i=N;i;i--)
	{
		if(s[i].back()<2e9)
		{
			cout<<ss[i].back()<<endl;
			return 0;
		}
	}
}
0