QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#236440 | #6433. Klee in Solitary Confinement | stcmuy | WA | 1ms | 3532kb | C++20 | 2.3kb | 2023-11-03 23:17:42 | 2023-11-03 23:17:43 |
Judging History
answer
#include <bits/stdc++.h>
#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define i64 long long
#define endl '\n'
#define lb(x) ((x) & (-x))
using namespace std;
const i64 mod = 1e9;
const int maxn = 3e7 + 10;
struct node
{
int l,r,cnt;
}tr[maxn];
int top;
int clone(int i)
{
top++;
tr[top] = tr[i];
return top;
}
int build(int l,int r)
{
int i = ++top;
if(l == r) return top;
int mid = l + r >> 1;
tr[i].l = build(l,mid);
tr[i].r = build(mid+1,r);
return i;
}
int add(int i,int l,int r,int x)
{
i = clone(i);
if(l == r)
{
tr[i].cnt++;
return i;
}
int mid = l + r >> 1;
if(x <= mid) tr[i].l = add(tr[i].l,l,mid,x);
else tr[i].r = add(tr[i].r,mid+1,r,x);
return i;
}
int query(int i,int l,int r,int x)
{
if(l == r) return tr[i].cnt;
int mid = l + r >> 1;
if(x <= mid) return query(tr[i].l,l,mid,x);
else return query(tr[i].r,mid+1,r,x);
}
signed main()
{
IOS;
int n,k; cin >> n >> k;
vector<int> a(n+1);
vector<int> s;
for(int i = 1; i <= n; ++i)
{
cin >> a[i];
s.push_back(a[i]);
}
sort(s.begin(),s.end());
int len = unique(s.begin(),s.end()) - s.begin() - 1;
s.push_back(mod);
vector<int> root(n+1);
root[0] = build(0,len);
vector<vector<int>> v(len+1);
for(int i = 1; i <= n; ++i)
{
int p = lower_bound(s.begin(),s.begin()+len + 1,a[i]) - s.begin();
root[i] = add(root[i-1],0,len,p);
v[p].push_back(i);
}
int mx = 0;
auto get = [&](int l,int r,int x) -> int
{
int res = 0;
int p = lower_bound(s.begin(),s.begin() + len + 1,s[x] + k) - s.begin();
if(s[p] == s[x] + k) res = query(root[n],0,len,p) - query(root[r],0,len,p) + query(root[l-1],0,len,p);
res += query(root[r],0,len,x) - query(root[l-1],0,len,x);
return res;
};
for(int i = 0; i <= len; ++i)
{
int p = lower_bound(s.begin(),s.begin()+len + 1,s[i] + k) - s.begin();
int now = 0,l = v[i][0];
if(s[p] == s[i] + k) now = query(root[n],0,len,p);
for(int &x : v[i])
{
int res = get(l,x,i);
mx = max(mx,res);
if(res < now) l = x;
}
}
cout << mx << endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3456kb
input:
5 2 2 2 4 4 4
output:
5
result:
ok 1 number(s): "5"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3372kb
input:
7 1 3 2 3 2 2 2 3
output:
6
result:
ok 1 number(s): "6"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3452kb
input:
7 1 2 3 2 3 2 3 3
output:
5
result:
ok 1 number(s): "5"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3464kb
input:
9 -100 -1 -2 1 2 -1 -2 1 -2 1
output:
3
result:
ok 1 number(s): "3"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3408kb
input:
200 121649 0 527189 -1000000 -306471 -998939 527189 -1000000 -1000000 0 527189 0 527189 0 527189 -306471 -998939 -306471 -306471 -306471 0 0 527189 527189 1000000 527189 -1000000 1000000 648838 -1000000 -998939 -998939 -998939 0 1000000 -1000000 -998939 527189 1000000 648838 -1000000 1000000 648838 ...
output:
37
result:
ok 1 number(s): "37"
Test #6:
score: 0
Accepted
time: 1ms
memory: 3408kb
input:
200 -454379 -385892 454379 -1000000 373644 -665078 -1000000 -1000000 454379 0 1000000 373644 -1000000 1000000 -385892 -1000000 373644 0 -665078 0 -665078 -1000000 -665078 -385892 -665078 -385892 454379 -665078 -385892 -1000000 454379 1000000 -385892 373644 454379 -1000000 -385892 -1000000 -385892 -1...
output:
40
result:
ok 1 number(s): "40"
Test #7:
score: 0
Accepted
time: 0ms
memory: 3444kb
input:
200 0 451272 -1000000 677452 677452 0 18908 451272 677452 -233144 677452 451272 18908 -1000000 18908 -1000000 0 451272 0 -233144 677452 1000000 451272 1000000 18908 -1000000 0 -233144 451272 1000000 18908 677452 0 677452 0 677452 1000000 -233144 18908 451272 -1000000 -233144 18908 1000000 0 0 -23314...
output:
35
result:
ok 1 number(s): "35"
Test #8:
score: 0
Accepted
time: 1ms
memory: 3532kb
input:
200 -705945 -586687 198791 0 198791 0 705945 198791 -1000000 705945 705945 1000000 705945 0 -1000000 699023 0 705945 -586687 -1000000 198791 -1000000 1000000 198791 -1000000 198791 705945 -1000000 1000000 1000000 198791 198791 -1000000 699023 0 0 699023 -586687 705945 -586687 705945 699023 0 705945 ...
output:
34
result:
ok 1 number(s): "34"
Test #9:
score: 0
Accepted
time: 0ms
memory: 3436kb
input:
200 0 344286 0 -230711 532652 -589794 344286 532652 -1000000 -589794 344286 0 532652 -1000000 344286 344286 1000000 0 -1000000 532652 532652 532652 -230711 -1000000 344286 532652 532652 0 532652 1000000 0 0 1000000 -589794 -1000000 1000000 -1000000 -1000000 344286 0 344286 344286 1000000 -1000000 -1...
output:
34
result:
ok 1 number(s): "34"
Test #10:
score: -100
Wrong Answer
time: 0ms
memory: 3468kb
input:
200 -230027 -1000000 -662604 0 1000000 59253 1000000 1000000 -662604 -662604 0 -70266 1000000 -300293 -300293 59253 1000000 -1000000 1000000 0 1000000 -662604 59253 -1000000 -70266 -1000000 -662604 -662604 59253 59253 -1000000 -70266 -70266 1000000 -300293 59253 59253 1000000 -70266 -1000000 -70266 ...
output:
32
result:
wrong answer 1st numbers differ - expected: '33', found: '32'