This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
struct S {
int n, k;
vector<int> a, b;
void run() {
cin >> n >> k;
a.resize(n); b.resize(n, k);
for (int i = 0; i < n; ++i) {
cin >> a[i];
b[i] += a[i];
}
reverse(b.begin(), b.end());
vector<int> lis;
vector<pair<int, int>> dpa(n); // {location, old val}
for (int i = 0; i < n; ++i) {
int pos = upper_bound(lis.begin(), lis.end(), a[i]) - lis.begin();
if (pos == lis.size()) {
dpa[i] = {pos, -1};
lis.push_back(a[i]);
} else {
dpa[i] = {pos, lis[pos]};
lis[pos] = a[i];
}
}
reverse(dpa.begin(), dpa.end());
int ans = lis.size();
vector<int> lds;
for (int i = 0; i < n; ++i) {
lis[dpa[i].first] = dpa[i].second;
if (lis[dpa[i].first] == -1) lis.pop_back();
// find first element smaller than b[i]
int pos = upper_bound(lds.begin(), lds.end(), b[i], greater<int>())
- lds.begin();
if (pos == lds.size()) {
lds.push_back(b[i]);
} else {
lds[pos] = b[i];
}
int bad = lds.end() - lower_bound(lds.begin(), lds.end(),
lis.back(), greater<int>());
ans = max(ans, int(lis.size() + lds.size() - bad));
}
cout << ans << '\n';
}
};
int main() {
ios::sync_with_stdio(0); cin.tie(0);
auto sol = make_unique<S>();
sol->run();
}
Compilation message (stderr)
glo.cpp: In member function 'void S::run()':
glo.cpp:21:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
21 | if (pos == lis.size()) {
| ~~~~^~~~~~~~~~~~~
glo.cpp:40:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
40 | if (pos == lds.size()) {
| ~~~~^~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |