#include <bits/stdc++.h>
using namespace std;
#define int long long
const int N = 2e5, modulo = 1e9 + 7;
int n, x[N + 5], y[N + 5];
pair<int, int> dp[N + 5], dp2[N + 5], tree[N + 5];
vector<int> mp;
pair<int, int> combine(pair<int, int>&a, pair<int, int>&b) {
if (a.first == b.first) return {a.first, (a.second + b.second) % modulo};
else return a > b ? a : b;
}
void update(int k, pair<int, int>x) {
for (; k <= n; k += k&-k) tree[k] = combine(tree[k], x);
}
pair<int, int> query(int k) {
pair<int, int> ans = {0, 0};
for (; k; k -= k&-k) ans = combine(ans, tree[k]);
return ans;
}
int binpow(int n, int k) {
if (!k) return 1;
else {
int ans = binpow(n, k/2);
ans *= ans, ans %= modulo;
if (k & 1) ans *= n, ans %= modulo;
return ans;
}
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n;
for (int i = 1; i <= n; i++) cin >> x[i];
for (int i = 1; i <= n; i++) mp.push_back(-x[i]);
sort(mp.begin(), mp.end());
mp.erase(unique(mp.begin(), mp.end()), mp.end());
auto getIndex = [&](int p) { return lower_bound(mp.begin(), mp.end(), p) - mp.begin() + 1; };
for (int i = 1; i <= n; i++) y[i] = getIndex(-x[i]);
for (int i = n; i >= 1; i--) {
pair<int, int> res = query(y[i] - 1);
if (!res.first) dp[i] = {1, 1};
else dp[i] = {res.first + 1, res.second};
update(y[i], dp[i]);
}
mp.clear();
for (int i = 1; i <= n; i++) tree[i] = {0, 0};
for (int i = 1; i <= n; i++) mp.push_back(x[i]);
sort(mp.begin(), mp.end());
mp.erase(unique(mp.begin(), mp.end()), mp.end());
for (int i = n; i >= 1; i--) {
y[i] = getIndex(x[i]);
pair<int, int> res = query(y[i] - 1);
if (!res.first) dp2[i] = {1, 1};
else dp2[i] = {res.first + 1, res.second};
update(y[i], dp2[i]);
}
int ans = 0, total = 0;
for (int i = 1; i <= n; i++) {
if (dp[i].first + dp2[i].first - 1 > ans) {
ans = dp[i].first + dp2[i].first - 1;
total = dp[i].second*dp2[i].second, total %= modulo;
} else if (dp[i].first + dp2[i].first - 1 == ans) {
total += dp[i].second*dp2[i].second, total %= modulo;
}
}
total *= binpow(2, n - ans), total %= modulo;
cout << ans << " " << total << '\n';
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
340 KB |
Output is correct |
3 |
Correct |
1 ms |
332 KB |
Output is correct |
4 |
Correct |
1 ms |
384 KB |
Output is correct |
5 |
Correct |
0 ms |
340 KB |
Output is correct |
6 |
Correct |
1 ms |
340 KB |
Output is correct |
7 |
Correct |
1 ms |
340 KB |
Output is correct |
8 |
Correct |
1 ms |
336 KB |
Output is correct |
9 |
Correct |
1 ms |
336 KB |
Output is correct |
10 |
Correct |
1 ms |
340 KB |
Output is correct |
11 |
Correct |
83 ms |
12748 KB |
Output is correct |
12 |
Correct |
68 ms |
11116 KB |
Output is correct |
13 |
Correct |
65 ms |
10464 KB |
Output is correct |
14 |
Correct |
111 ms |
11520 KB |
Output is correct |
15 |
Correct |
121 ms |
14144 KB |
Output is correct |
16 |
Correct |
143 ms |
16256 KB |
Output is correct |
17 |
Correct |
92 ms |
15752 KB |
Output is correct |
18 |
Correct |
91 ms |
15680 KB |
Output is correct |
19 |
Correct |
91 ms |
15680 KB |
Output is correct |
20 |
Correct |
95 ms |
15772 KB |
Output is correct |