# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
367222 | leu_naut | Global Warming (CEOI18_glo) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define FOR(i,a,b) for (int i = a; i <= b; ++i)
#define FORd(i,a,b) for (int i = a; i >= b; --i)
#define FastRead ios_base::sync_with_stdio(0); cin.tie(nullptr);
#define II pair <ll,ll>
const int N = 2e5;
const ll oo = 1e18;
const int maxN = 2e9;
const int MOD = 1e9 + 7;
ll a[N + 10], dp[N + 10];
int main()
{
/*#ifndef ONLINE_JUDGE
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
#endif //ONLINE_JUDGE */
FastRead
int n,x;
ll k = 0;
cin >> n >> x;
for (int i = 0; i < n; ++i) cin >> a[i];
vector <ll> lis;
//Longest increasing subsequence ending at pos i
for (int i = 0; i < n; ++i) {
int pos = lower_bound(lis.begin(),lis.end(),a[i]) - lis.begin();
if (pos == lis.size()) lis.push_back(a[i]);
else lis[pos] = a[i];
dp[i] = j + 1;
k = max(k, dp[i]);
}
lis.clear();
//Longest increasing subsequence starting at pos i and decrease all [1,i] by x
//= Longest increase minus subsequence ending at pos i with reverse array and plus x.
for (int i = n - 1; i >= 0; --i) {
ll p = lower_bound(lis.begin(),lis.end(), -a[i] + x) - lis.begin();
int pos = lower_bound(lis.begin(),lis.end(),-a[i]) - lis.begin();
if (pos == lis.size()) lis.push_back(-a[i]);
else lis[pos] = -a[i];
k = max(k,dp[i] + p);
}
cout << k;
}