# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
259883 | peuch | Global Warming (CEOI18_glo) | C++17 | 83 ms | 4676 KiB |
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;
const int MAXN = 2e5 + 10;
const int INF = 2e9 + 7;
int n, x;
int v[MAXN];
int dp[MAXN];
int maxi[MAXN];
int ans;
int main(){
scanf("%d %d", &n, &x);
for(int i = 1; i <= n; i++)
scanf("%d", &v[i]);
for(int j = 1; j <= n; j++)
dp[j] = INF;
for(int i = 1; i <= n; i++){
int k = lower_bound(dp, dp + 1 + n, v[i]) - dp;
dp[k] = v[i];
maxi[i] = k;
ans = max(ans, k);
}
for(int j = 1; j <= n; j++)
dp[j] = INF;
dp[0] = -INF;
for(int i = n; i > 0; i--){
int aux = lower_bound(dp, dp + 1 + n, -v[i]) - dp;
aux--;
int k = lower_bound(dp, dp + 1 + n, -v[i] - x) - dp;
dp[k] = -v[i] - x;
ans = max(ans, maxi[i] + aux);
ans = max(ans, k);
}
printf("%d\n", ans);
}
Compilation message (stderr)
# | 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... |