QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#668451#7685. Barkley IIxDarkbluexWA 60ms3596kbC++171.2kb2024-10-23 14:28:502024-10-23 14:28:50

Judging History

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

  • [2024-10-23 14:28:50]
  • 评测
  • 测评结果:WA
  • 用时:60ms
  • 内存:3596kb
  • [2024-10-23 14:28:50]
  • 提交

answer

#include <bits/stdc++.h>

struct Fenwick {
    std::vector<int> t;
    int n;
    Fenwick(int _n) : n(_n), t(_n + 1, 0) {};

    void add(int x, int y) {
        for (; x <= n; x += x & -x) t[x] += y;
    }

    int query(int x) {
        int ans = 0;
        for (; x; x -= x & -x) ans += t[x];
        return ans;
    }
};

void solve() {
    int n, m;
    std::cin >> n >> m;
    
    std::vector<int> a(n + 1, 0);
    for (int i = 1; i <= n; i++) {
        std::cin >> a[i];
    }

    std::vector<int> pre(n + 1, 0);
    std::vector<int> last(m + 1, 0);
    for (int i = 1; i <= n; i++) {
        pre[i] = last[a[i]];
        last[a[i]] = i;
    }

    Fenwick x(n);
    int ans = -1;
    for (int i = 1; i <= n; i++) {
        ans = std::max(ans, x.query(i - 1) - x.query(pre[i]) - a[i]);
        if (pre[i]) x.add(pre[i], -1);
        x.add(i, 1);
    }

    for (int i = 1; i <= n; i++) {
        int mex = a[i];
        ans = std::max(ans, x.query(n) - x.query(last[a[i]]) - a[i]);
        ans = std::max(ans, x.query(n) - a[i] - 1);
    }
    std::cout << ans << '\n';
}

int main() {
    int T;
    std::cin >> T;
    while (T--) {
        solve();
    }
    return 0;
}

详细

Test #1:

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

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: 60ms
memory: 3596kb

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
3
2
6
3
4
3
5
5
4
4
5
3
3
0
4
5
5
7
6
3
3
2
2
4
6
7
3
3
2
6
2
4
3
2
5
5
3
5
3
4
6
4
3
5
5
3
3
3
8
4
3
5
5
4
2
6
5
3
3
4
6
3
3
2
3
1
7
7
6
3
5
4
3
5
5
-1
6
3
4
4
4
5
2
3
5
4
5
5
5
5
2
2
2
2
4
4
6
5
3
5
3
2
5
5
7
4
-1
6
6
3
6
4
5
5
4
6
6
6
7
5
5
5
4
4
5
4
5
4
-1
4
3
1
3
5
1
3
1
6
5
3
2
6
5
5
4
-1
6
...

result:

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