結果

問題 No.992 最長増加部分列の数え上げ
ユーザー square1001square1001
提出日時 2020-02-14 21:46:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,278 ms / 2,000 ms
コード長 1,785 bytes
コンパイル時間 1,112 ms
コンパイル使用メモリ 88,100 KB
実行使用メモリ 99,456 KB
最終ジャッジ日時 2024-10-06 11:11:25
合計ジャッジ時間 30,216 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
12,928 KB
testcase_01 AC 6 ms
12,800 KB
testcase_02 AC 6 ms
12,928 KB
testcase_03 AC 6 ms
12,928 KB
testcase_04 AC 392 ms
44,032 KB
testcase_05 AC 260 ms
35,200 KB
testcase_06 AC 500 ms
51,712 KB
testcase_07 AC 346 ms
40,448 KB
testcase_08 AC 162 ms
26,752 KB
testcase_09 AC 352 ms
41,472 KB
testcase_10 AC 488 ms
51,712 KB
testcase_11 AC 641 ms
62,612 KB
testcase_12 AC 97 ms
22,016 KB
testcase_13 AC 322 ms
39,296 KB
testcase_14 AC 328 ms
39,680 KB
testcase_15 AC 99 ms
22,144 KB
testcase_16 AC 1,123 ms
90,752 KB
testcase_17 AC 158 ms
26,624 KB
testcase_18 AC 313 ms
38,656 KB
testcase_19 AC 646 ms
61,952 KB
testcase_20 AC 1,264 ms
99,172 KB
testcase_21 AC 1,249 ms
99,200 KB
testcase_22 AC 1,267 ms
99,428 KB
testcase_23 AC 1,262 ms
99,200 KB
testcase_24 AC 1,278 ms
99,328 KB
testcase_25 AC 1,252 ms
99,328 KB
testcase_26 AC 1,255 ms
99,456 KB
testcase_27 AC 1,264 ms
99,456 KB
testcase_28 AC 1,264 ms
99,328 KB
testcase_29 AC 1,250 ms
99,432 KB
testcase_30 AC 416 ms
31,616 KB
testcase_31 AC 417 ms
31,744 KB
testcase_32 AC 416 ms
31,828 KB
testcase_33 AC 416 ms
31,744 KB
testcase_34 AC 413 ms
31,864 KB
testcase_35 AC 565 ms
31,412 KB
testcase_36 AC 562 ms
31,360 KB
testcase_37 AC 563 ms
31,488 KB
testcase_38 AC 563 ms
31,488 KB
testcase_39 AC 565 ms
31,232 KB
testcase_40 AC 447 ms
35,968 KB
testcase_41 AC 453 ms
35,840 KB
testcase_42 AC 452 ms
35,968 KB
testcase_43 AC 451 ms
35,840 KB
testcase_44 AC 453 ms
35,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <map>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
const int mod = 1000000007;
const int inf = 1012345678;
int sz, seg[524295];
void update(int pos, int val) {
	pos += sz;
	seg[pos] = val;
	while (pos > 1) {
		pos >>= 1;
		seg[pos] = max(seg[pos * 2], seg[pos * 2 + 1]);
	}
}
int query(int a, int b, int k, int l, int r) {
	if (r <= a || b <= l) return -inf;
	if (a <= l && r <= b) return seg[k];
	int lc = query(a, b, k * 2, l, (l + r) >> 1);
	int rc = query(a, b, k * 2 + 1, (l + r) >> 1, r);
	return max(lc, rc);
}
map<int, int> bit[200009];
void add(int f, int x, int val) {
	for (int i = x + 1; i <= sz; i += i & (-i)) {
		bit[f][i] += val;
		if (bit[f][i] >= mod) bit[f][i] -= mod;
	}
}
int sum(int f, int r) {
	int ans = 0;
	for (int i = r; i >= 1; i -= i & (-i)) {
		ans += bit[f][i];
		if (ans >= mod) ans -= mod;
	}
	return ans;
}
int main() {
	int N;
	cin >> N;
	vector<int> A(N);
	for (int i = 0; i < N; ++i) {
		cin >> A[i];
	}
	vector<int> perm(N);
	for (int i = 0; i < N; ++i) {
		perm[i] = i;
	}
	sort(perm.begin(), perm.end(), [&](int i, int j) { return A[i] != A[j] ? A[i] < A[j] : i > j; });
	sz = 1;
	while (sz < N) sz *= 2;
	vector<int> dp(N);
	for (int i = 0; i < N; ++i) {
		dp[perm[i]] = query(0, perm[i], 1, 0, sz) + 1;
		if (dp[perm[i]] <= 0) dp[perm[i]] = 1;
		update(perm[i], dp[perm[i]]);
	}
	vector<int> ways(N);
	for (int i = 0; i < N; ++i) {
		if (dp[perm[i]] == 1) {
			ways[perm[i]] = 1;
		}
		else {
			ways[perm[i]] = sum(dp[perm[i]] - 1, perm[i]);
		}
		add(dp[perm[i]], perm[i], ways[perm[i]]);
	}
	int len = *max_element(dp.begin(), dp.end());
	int ans = 0;
	for (int i = 0; i < N; ++i) {
		if (dp[i] == len) {
			ans += ways[i];
			if (ans >= mod) ans -= mod;
		}
	}
	cout << ans << endl;
	return 0;
}
0