# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
518723 | zhangjishen | Global Warming (CEOI18_glo) | C++98 | 65 ms | 3412 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define mp make_pair
#define pb push_back
#define fi first
#define se second
template<typename T> bool chkmin(T &a, T b){return b < a ? a = b, 1 : 0;}
template<typename T> bool chkmax(T &a, T b){return b > a ? a = b, 1 : 0;}
const int inf = 2e9 + 10, MAXN = 2e5 + 10;
int n, x, a[MAXN], f[MAXN], L[MAXN], R[MAXN];
int main(){
// input
scanf("%d %d", &n, &x);
for(int i = 1; i <= n; i++)
scanf("%d", &a[i]);
// L
for(int i = 1; i <= n; i++)
f[i] = inf;
for(int i = 1; i <= n; i++){
L[i] = lower_bound(f + 1, f + 1 + n, a[i] + x) - f;
int j = lower_bound(f + 1, f + 1 + n, a[i]) - f;
f[j] = a[i];
}
// R
for(int i = 1; i <= n; i++)
f[i] = inf;
for(int i = n; i >= 1; i--){ // LDS of reverse = LIS of - reverse
R[i] = lower_bound(f + 1, f + 1 + n, -a[i]) - f;
f[R[i]] = -a[i];
}
// ans
int ans = 0;
for(int i = 1; i <= n; i++)
chkmax(ans, L[i] + R[i] - 1);
printf("%d\n", ans);
}
컴파일 시 표준 에러 (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... |