# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
779574 | Trisanu_Das | Global Warming (CEOI18_glo) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int mxN=2e5;
int n, x, t[mxN], ps[mxN], ft[2][mxN+1];
inline void upd(int k, int i, int x) {
for(++i; i<=n; i+=i&-i)
ft[k][i]=max(x, ft[k][i]);
}
inline int qry(int k, int i) {
int r=0;
for(; i; i-=i&-i)
r=max(ft[k][i], r);
return r;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n >> x;
for(int i=0; i<n; ++i)
cin >> t[i], ps[i]=t[i];
sort(ps, ps+n);
for(int i=0; i<n; ++i) {
int p=lower_bound(ps, ps+n, t[i])-ps, a=qry(0, p), b=qry(0, lower_bound(ps, ps+n, t[i]+x)-ps), c=qry(1, p);
upd(0, p, a+1);
upd(1, p, max(b, c)+1);
}