#include<bits/stdc++.h>
using namespace std;
const long long inf = (long long) 1e18 + 10;
const int inf1 = (int) 1e9 + 10;
#define int long long
#define dbl long double
#define endl '\n'
#define sc second
#define fr first
#define mp make_pair
#define pb push_back
#define all(x) x.begin(), x.end()
#define maxn 520000
int n, x, bit1[maxn], bit2[maxn], a[maxn], mxv, nx[maxn];
void att1(int pos, int val) {
for(int i = pos; i <= mxv; i+= i&-i) {
bit1[i] = max(bit1[i],val);
}
}
int qrr1(int pos) {
int val = 0;
for(int i = pos; i > 0; i-= i&-i) {
val = max(val,bit1[i]);
}
return val;
}
void att2(int pos, int val) {
for(int i = pos; i <= mxv; i+= i&-i) {
bit2[i] = max(bit2[i],val);
}
}
int qrr2(int pos) {
int val = 0;
for(int i = pos; i > 0; i-= i&-i) {
val = max(val,bit2[i]);
}
return val;
}
void solve() {
cin >> n >> x;
vector<int> cc;
for(int i = 1; i <= n; i++) {
cin >> a[i];
cc.pb(a[i]);
cc.pb(a[i]+x);
}
sort(all(cc));
cc.erase(unique(all(cc)),cc.end());
mxv = cc.size()+1;
for(int i = 1; i <= n; i++) {
nx[i] = upper_bound(all(cc),a[i]+x) - cc.begin();
a[i] = upper_bound(all(cc),a[i]) - cc.begin();
}
int ans = 0;
for(int i = 1; i <= n; i++) {
// cout << i << " " << a[i] << " " << nx[i] << endl;
//se ja usou
// int ans2 = qrr2(a[i]-1) + 1;
// ans = max(ans, ans2);
// att2(a[i],ans2);
//nao usou
// int ans3 = qrr1(nx[i]-1) + 1;
// ans = max(ans, ans3);
// att2(a[i],ans3);
int ans1 = qrr1(a[i]-1) + 1;
ans = max(ans, ans1);
att1(a[i],ans1);
}
cout << ans << endl;
}
int32_t main() {
ios::sync_with_stdio(false); cin.tie(0);
// freopen("in.in", "r", stdin);
//freopen("out.out", "w", stdout);
int tt = 1;
// cin >> tt;
while(tt--) solve();
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
123 ms |
8240 KB |
Output is correct |
2 |
Correct |
105 ms |
9268 KB |
Output is correct |
3 |
Correct |
109 ms |
9156 KB |
Output is correct |
4 |
Correct |
118 ms |
9164 KB |
Output is correct |
5 |
Correct |
52 ms |
8340 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
34 ms |
2816 KB |
Output is correct |
2 |
Correct |
31 ms |
3268 KB |
Output is correct |
3 |
Correct |
25 ms |
3248 KB |
Output is correct |
4 |
Incorrect |
14 ms |
2680 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
56 ms |
4404 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |