QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#710655#7904. Rainbow SubarrayFUCKUCUPWA 130ms5860kbC++201.7kb2024-11-04 20:53:452024-11-04 20:53:45

Judging History

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

  • [2024-11-04 20:53:45]
  • 评测
  • 测评结果:WA
  • 用时:130ms
  • 内存:5860kb
  • [2024-11-04 20:53:45]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
const int maxn = 5e5 + 10;
int T, n, a[maxn];
long long k, sum1, sum2;
multiset<int, greater<>> st1;
multiset<int> st2;
inline long long calc() {
  int mid = *st1.begin();
  long long tot = sum2 - 1ll * st2.size() * mid + 1ll * st1.size() * mid - sum1;
  return tot;
}
inline void update() {
  if(st1.size() < st2.size()) {
    int val = *st2.begin();
    st2.erase(st2.begin()), sum2 -= val;
    st1.insert(val), sum1 += val;
  }
  while(!st1.empty() && !st2.empty() && *st1.begin() > *st2.begin()) {
    int val1 = *st1.begin(), val2 = *st2.begin();
    st1.erase(st1.begin()), st2.erase(st2.begin());
    st1.insert(val2), st2.insert(val1);
    sum1 = sum1 - val1 + val2, sum2 = sum2 - val2 + val1;
  }
}
inline void solve() {
  cin >> n >> k, sum1 = sum2 = 0, st1.clear(), st2.clear();
  for(int i = 1; i <= n; ++i) cin >> a[i], a[i] -= i;
//  for(int i = 1; i <= n; ++i) cout << a[i] << ' '; cout << '\n';
  int l = 1, ans = 0;
  for(int i = 1; i <= n; ++i) {
    if(st1.size() <= st2.size()) st1.insert(a[i]), sum1 += a[i];
    else st2.insert(a[i]), sum2 += a[i];
    update();
    while(l < i && calc() > k) {
      if(st1.count(a[l])) st1.extract(a[l]), sum1 -= a[l];
      else st2.extract(a[l]), sum2 -= a[l];
      update(), ++l;
    }
//    cout << l << ' ' << i << ' ' << calc() << '\n';
//    for(auto &x : st1) cout << x << ' ';
//    cout << "| ";
//    for(auto &x : st2) cout << x << ' ';
//    cout << '\n';
    ans = max(ans, i - l + 1);
  }
  cout << ans << '\n';
}
int main() {
  ios::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
  cin >> T;
  while(T--) solve();
  return 0;
}

詳細信息

Test #1:

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

input:

5
7 5
7 2 5 5 4 11 7
6 0
100 3 4 5 99 100
5 6
1 1 1 1 1
5 50
100 200 300 400 500
1 100
3

output:

4
3
5
1
1

result:

ok 5 lines

Test #2:

score: -100
Wrong Answer
time: 130ms
memory: 5860kb

input:

11102
2 167959139
336470888 134074578
5 642802746
273386884 79721198 396628655 3722503 471207868
6 202647942
268792718 46761498 443917727 16843338 125908043 191952768
2 717268783
150414369 193319712
6 519096230
356168102 262263554 174936674 407246545 274667941 279198849
9 527268921
421436316 3613460...

output:

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

result:

wrong answer 3034th lines differ - expected: '6', found: '5'