이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main()
{
// inicijalizacija i input
int n,x;
cin>>n>>x;
int niza[n];
for (int i = 0; i<n; i++) cin>>niza[i];
int dp[n], lisPref[n];
int res = 0;
for (int i = 0; i<n; i++) dp[i] = INT_MAX/2;
// privremenata rastecka niza ja polnime so golemi brojki, za ako ne postoi poglema brojka od onaa koja ja vnesuvame avtomatski da dojde na "krajot"
for (int i = 0; i<n; i++) {
auto sled = lower_bound(dp,dp+n,niza[i]);
int j = sled-dp;
dp[j] = niza[i];
lisPref[i] = j+1;
res = max(res,lisPref[i]); // go apdejtirame rezultatot so LIS do pozicija i (ovde voopsto ne go gledame x)
}
for (int i = 0; i<n; i++) dp[i] = INT_MAX/2; // ja resetirame privremenata rastecka dp niza
for (int i = n-1; i>=0; i--) {
auto prev = lower_bound(dp,dp+n,-niza[i]+x); // vo rasteckata podniza pisuvame negativni broevi za da bide opagjacka, i dodavame x namesto da odzemame
int j = prev-dp;
res = max(res,lisPref[i]+j); // go apdejtirame rezultatot so LIS do pozicija i plus LIS od ovaa strana
auto ide = lower_bound(dp,dp+n,-niza[i]); // vo nizata go pisuvame LIS bez da go smetame x bidejkji toj e biten samo na krajot
int idePos = ide-dp;
dp[idePos] = -niza[i];
}
cout<<res<<endl;
return 0;
}
# | 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... |