QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#612564#7685. Barkley IIzhangbojuWA 50ms32628kbC++172.0kb2024-10-05 12:01:162024-10-05 12:01:17

Judging History

你现在查看的是最新测评结果

  • [2024-10-05 12:01:17]
  • 评测
  • 测评结果:WA
  • 用时:50ms
  • 内存:32628kb
  • [2024-10-05 12:01:16]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
const int MAXN=500010;
int n,m;
int a[MAXN];
bool flag[MAXN];
vector<int> num;
vector<int> pos[MAXN];
int lst[MAXN];
struct qry{
    int l,r;
    int v;
    qry(int _l=0,int _r=0,int _v=0){l=_l,r=_r,v=_v;}
}q[MAXN<<1];
bool operator < (qry a,qry b){
    return a.r<b.r;
}
inline int lowbit(int x){return x&(-x);}
int c[MAXN];
void update(int x,int v){
    if(!x)return;
    while(x<=n){
        c[x]+=v;
        x+=lowbit(x);
    }
}
int query(int x){
    int ret=0;
    while(x){
        ret+=c[x];
        x-=lowbit(x);
    }
    return ret;
}
int main(){
    int T;
    cin>>T;
    while(T--){
        scanf("%d%d",&n,&m);
        for(int i=1;i<=n;++i){
            scanf("%d",&a[i]);
            if(!flag[a[i]]){
                num.push_back(a[i]);
                flag[a[i]]=true;
            }
            pos[a[i]].push_back(i);
        }
        sort(num.begin(),num.end());
        int tot=0;
        for(int x: num){
            for(int i=0;i<pos[x].size()-1;++i){
                int l=pos[x][i],r=pos[x][i+1];
                if(r-l>1)q[++tot]=qry(l+1,r-1,-x);
            }
            if(pos[x].front()>1)q[++tot]=qry(1,pos[x].front()-1,-x);
            if(pos[x].back()<n)q[++tot]=qry(pos[x].back()+1,n,-x);
        }
        sort(q+1,q+1+tot);
        int ans=-1;
        int j=1;
        for(int i=1;i<=n;++i){
            update(lst[a[i]],-1);update(i,1);
            lst[a[i]]=i;
            while(q[j].r<=i&&j<=tot){
                // cout<<q[j].l<<' '<<i<<' '<<q[j].v<<endl;
                ans=max(ans,query(i)-query(q[j].l-1)+q[j].v);
                // cout<<query(q[j].l-1)<<' '<<query(i)<<endl;
                j++;
            }
        }
        printf("%d\n",ans);
        for(auto x: num){
            update(lst[x],-1);
            lst[x]=0;
        }
        num.clear();
        for(int i=1;i<=n;++i){
            flag[a[i]]=false;
            pos[a[i]].clear();
        }
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 3ms
memory: 32528kb

input:

2
5 4
1 2 2 3 4
5 10000
5 2 3 4 1

output:

2
3

result:

ok 2 number(s): "2 3"

Test #2:

score: -100
Wrong Answer
time: 50ms
memory: 32628kb

input:

50000
10 19
12 6 1 12 11 15 4 1 13 18
10 8
8 7 6 7 6 2 2 3 4 8
10 6
3 2 6 6 5 2 3 4 5 6
10 11
6 3 7 9 2 1 2 10 10 4
10 6
6 1 2 6 1 1 3 4 2 1
10 9
8 5 3 9 1 7 5 5 1 1
10 5
1 4 3 2 5 4 5 3 5 2
10 14
3 8 12 10 4 2 3 13 7 3
10 14
5 5 12 2 8 1 13 9 8 5
10 7
5 5 6 6 1 5 3 7 3 4
10 7
5 1 4 6 1 6 4 3 7 5
10...

output:

3
1
2
4
2
3
3
3
3
3
4
5
2
3
-1
3
1
3
7
6
3
3
-1
2
4
4
6
2
3
0
6
1
2
2
2
5
3
3
3
3
2
5
2
1
3
3
2
3
1
4
2
2
4
4
2
2
5
3
2
1
4
3
3
3
2
3
0
4
7
6
2
2
4
3
3
4
-1
6
3
3
3
3
4
0
1
1
4
5
4
5
3
1
1
2
1
3
3
4
4
3
4
2
1
3
4
4
3
-1
3
4
3
5
4
4
2
4
6
4
4
5
3
4
5
1
4
3
3
3
3
-1
3
2
1
2
5
1
2
1
4
4
2
2
4
5
4
3
-1
...

result:

wrong answer 1st numbers differ - expected: '6', found: '3'