QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#733029#7685. Barkley IIgates_orzWA 148ms6076kbC++202.4kb2024-11-10 16:54:172024-11-10 16:54:17

Judging History

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

  • [2024-11-10 16:54:17]
  • 评测
  • 测评结果:WA
  • 用时:148ms
  • 内存:6076kb
  • [2024-11-10 16:54:17]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;


using LL=long long;
const int N=5e5+10;
const int M=N*2;

int n,m;
struct Node {
    int id;
    int l,r;
    int a;
    int mex;

};
Node query[N];
int Get[N],len;
bool cmp(const Node &a,const Node &b) {
    if(Get[a.l]!=Get[b.l])return Get[a.l]<Get[b.l];
    return a.r<b.r;
}
inline int min(int a,int b) {
    return a<b?a:b;
}
inline int max(int a,int b) {
    return a>b?a:b;
}
void solve() {
    cin>>n>>m;
    len=pow(n,0.5);
    len=max(len,1);
    vector<int>a(n+1);
    map<int,int>mm;
    int idx=0;
    for(int i=1;i<=n;i++) {
        cin>>a[i];
        Get[i]=i/len;
        if(mm[a[i]]==0) {
            if(i!=1) {
                ++idx;
                query[idx] = {idx, 1, i - 1,a[i]};
            }
            mm[a[i]]=i;
        }
        else {
            if(i-mm[a[i]]!=1) {
                ++idx;
                query[idx]={idx,mm[a[i]]+1,i-1,a[i]};
            }
            mm[a[i]]=i;
        }
    }
    for(auto [t1,t2]:mm) {
        if(t2!=n) {
            ++idx;
            query[idx]={idx,t2+1,n};
        }
    }
    /*cerr<<"query: "<<"\n";
    for(int i=1;i<=idx;i++) {
        cerr<<query[i].l<<" "<<query[i].r<<"\n";
    }*/
    ++idx;
    query[idx]={idx,1,n};
    sort(query+1,query+1+idx,cmp);
    map<int,int>num;
    num[0]=1;
    auto add=[&](int x,int &res,int &mex) {
        ++num[x];
        if(num[x]==1) {
            ++res;
            while(num[mex]==1)++mex;
        }

    };
    auto del=[&](int x,int &res,int &mex) {
        --num[x];
        if(num[x]==0) {
            --res;
            mex=min(mex,x);
            while(num[mex]==0)--mex;
        }
    };

    int ans=-1;
    for(int k=1,i=0,j=1,res=0,mex=1;k<=idx;k++) {
        int id=query[k].id,l=query[k].l,r=query[k].r;
        int tmp=query[k].a;
        while(i<r)add(a[++i],res,mex);
        while(i>r)del(a[i--],res,mex);
        while(j<l)del(a[j++],res,mex);
        while(j>l)add(a[--j],res,mex);

        ans=max(ans,res-max(1,mex));
        //cerr<<"res="<<res<<" mex="<<mex<<" l="<<l<<" r="<<r<<"\n";
    }
    cout<<ans<<"\n";

}
/*
22
5 500000
1 2 2 3 4
5 500000
5 2 3 4 1


2
5 4
1 2 2 3 4
5 10000
5 2 3 4 1
 */
signed main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    int T=1;
    cin>>T;
    //T=500000;
    while(T--)solve();
    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 6076kb

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: 148ms
memory: 5828kb

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:

6
5
4
4
3
5
3
7
4
4
5
5
3
3
6
6
7
6
7
6
5
5
6
2
6
8
7
2
5
5
6
3
3
3
4
5
3
3
7
3
4
5
6
1
3
5
3
3
4
8
6
6
5
7
4
4
5
4
6
6
6
5
7
3
6
4
3
7
7
6
6
7
4
3
4
4
4
6
3
4
6
6
4
5
5
9
4
5
7
5
3
5
2
2
5
6
6
8
6
3
4
5
5
5
7
7
3
2
7
5
3
5
4
4
5
6
6
7
6
7
7
4
6
7
4
7
3
7
6
6
6
5
4
2
5
4
2
3
6
5
2
6
5
5
5
4
5
6
7
6
...

result:

wrong answer 5th numbers differ - expected: '2', found: '3'