QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#267219#7685. Barkley IIDAleksaTL 0ms28020kbC++141.5kb2023-11-27 02:23:152023-11-27 02:23:15

Judging History

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

  • [2023-11-27 02:23:15]
  • 评测
  • 测评结果:TL
  • 用时:0ms
  • 内存:28020kb
  • [2023-11-27 02:23:15]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

struct query {
    int l;
    int r;
    int mex;
};

const int N = 5e5 + 10;
int n, m;
int a[N];
vector<int> pos[N];
vector<query> qs;
vector<pair<int, int>> q[N];
int lst[N];

int fenw[N];

void update(int x, int val) { for(int i = x; i <= n; i += (i & -i)) fenw[i] += val; }
int get(int r) {
    int ans = 0;
    for(int i = r; i >= 1; i -= (i & -i)) ans += fenw[i];
    return ans;
}
int get(int l, int r) { return get(r) - get(l - 1); }

void solve() {
    cin >> n >> m;
    for(int i = 1; i <= n; i++) {
        cin >> a[i];
        pos[a[i]].push_back(i);
    }
    for(int mex = 1; mex <= n + 1; mex++) {
        vector<int> ind;
        ind.push_back(0);
        for(int i : pos[mex]) ind.push_back(i);
        ind.push_back(n + 1);
        for(int i = 1; i < ind.size(); i++) {
            qs.push_back({ind[i - 1] + 1, ind[i] - 1, mex});
        }
    }
    sort(qs.begin(), qs.end(), [&](query i, query j) { return i.r < j.r; });
    for(query Q : qs) q[Q.r].push_back({Q.l, Q.mex});
    int ans = 0;
    for(int i = 1; i <= n; i++) {
        if(lst[a[i]] > 0) update(lst[a[i]], -1);
        lst[a[i]] = i;
        update(lst[a[i]], 1);
        for(pair<int, int> p : q[i]) {
            int l = p.first, mex = p.second;
            ans = max(ans, get(l, i) - mex);
        }
    }
    cout << ans << "\n";
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    int t;
    cin >> t;
    while(t--) solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 28020kb

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
Time Limit Exceeded

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:


result: