QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#291193 | #7685. Barkley II | OAleksa | WA | 69ms | 15860kb | C++14 | 1.4kb | 2023-12-26 05:21:38 | 2023-12-26 05:21:38 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define f first
#define s second
#define int long long
const int N = 5e5 + 69;
int n, m, a[N], lst[N], fenw[N];
vector<int> pos[N];
signed main() {
ios_base::sync_with_stdio(false);
cout.tie(nullptr);
cin.tie(nullptr);
//freopen("newbarn.in", "r", stdin);
//freopen(newbarn.out", "w", stdout);
int tt = 1;
cin >> tt;
while (tt--) {
cin >> n >> m;
for (int i = 1;i <= m;i++) {
fenw[i] = lst[i] = 0;
pos[i].clear();
}
for (int i = 1;i <= n;i++)
cin >> a[i];
for (int i = 1;i <= m;i++)
pos[i].push_back(0);
for (int i = 1;i <= n;i++)
pos[a[i]].push_back(i);
for (int i = 1;i <= m;i++)
pos[i].push_back(n + 1);
vector<pair<int, int>> q[n + 1];
for (int i = 1;i <= m;i++) {
for (int j = 1;j < (int)pos[i].size();j++) {
q[pos[i][j] - 1].push_back({pos[i][j - 1] + 1, i});
}
}
auto add = [&](int v, int val) {
for (int i = v;i < N;i += (i & -i))
fenw[i] += val;
};
auto get = [&](int v) {
int res = 0;
for (int i = v;i >= 1;i -= (i & -i))
res += fenw[i];
return res;
};
int ans = 0;
for (int i = 1;i <= n;i++) {
if (lst[a[i]] > 0)
add(lst[a[i]], -1);
add(i, 1);
for (auto u : q[i]) {
int l = u.f, mx = u.s;
ans = max(ans, get(i) - get(l - 1) - mx);
}
lst[a[i]] = i;
}
cout << ans << '\n';
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 15860kb
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: 69ms
memory: 15264kb
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 7 12 4 9 8 13 7 4 11 17 5 9 13 6 6 7 5 7 6 7 5 6 7 6 8 7 11 5 7 6 10 2 9 4 5 3 5 7 9 15 5 6 7 7 5 10 6 3 8 6 6 5 7 4 10 5 4 6 6 6 3 7 9 6 10 7 7 7 6 6 7 6 11 16 12 4 6 10 4 6 6 6 9 5 9 6 5 7 5 4 5 8 12 5 6 6 8 6 6 4 5 5 5 7 7 12 17 6 5 11 5 4 4 5 6 6 5 6 7 7 4 5 7 4 7 3 7 8 6 6 6 4 6 5 4 7 13 6 5 ...
result:
wrong answer 2nd numbers differ - expected: '5', found: '7'