QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#643674#7904. Rainbow SubarrayLeft0807WA 144ms8772kbC++202.7kb2024-10-15 22:57:332024-10-15 22:57:34

Judging History

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

  • [2024-10-15 22:57:34]
  • 评测
  • 测评结果:WA
  • 用时:144ms
  • 内存:8772kb
  • [2024-10-15 22:57:33]
  • 提交

answer

#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp> // Common file
#include <ext/pb_ds/tree_policy.hpp> // Including tree_order_statistics_node_update
#define int long long
#define pii pair<int, int>
#define all(a) a.begin(), a.end()
using namespace std;
using namespace __gnu_pbds;
using ordered_set = tree<pii, null_type, less<pii>, rb_tree_tag, tree_order_statistics_node_update>;


int INF = 1e18; 
const int MOD = 998244353;
const int N = 5e5 + 10;
const int LOG = 20;
const int dx[4] = {0, 0, 1, -1};
const int dy[4] = {1, -1, 0, 0};

mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());

int a[N];

void solve(){
    int n, k;
    cin >> n >> k;    

    for(int i = 1; i <= n; i++){
        cin >> a[i];
        a[i] = abs(a[i] - i);
    }

    int ans = 1;
    int l = 1, r = 1;

    multiset<int> L, R;
    int ltot = 0, rtot = 0;

    while(r <= n){
        L.insert(a[r]);
        ltot += a[r];

        int cost = INF;

        do{
            if(cost != INF){
                if(L.find(a[l]) != L.end()) L.erase(L.find(a[l])), ltot -= a[l];
                else if(R.find(a[l]) != R.end()) R.erase(R.find(a[l])), rtot -= a[l];
                l++;
            }

            if((int)L.size() - (int)R.size() > 1){
                ltot -= *L.rbegin();
                rtot += *L.rbegin();
                R.insert(*L.rbegin());
                L.erase(L.find(*L.rbegin()));
            }

            if((int)R.size() - (int)L.size() > 1){
                ltot += *R.begin();
                rtot -= *R.begin();
                L.insert(*R.begin());
                R.erase(R.find(*R.begin()));
            }

            while(!L.empty() && !R.empty() && *L.rbegin() > *R.begin()){
                int x = *L.rbegin(), y = *R.begin();
                ltot += y - x;
                rtot += x - y;

                L.erase(L.find(x)); L.insert(y);
                R.erase(R.find(y)); R.insert(x);
            }

            if(!L.empty()) cost = min(cost, (int)(*L.rbegin() * L.size() - ltot) + (int)(rtot - *L.rbegin() * R.size()));
            if(!R.empty()) cost = min(cost, (int)(*R.begin() * L.size() - ltot) + (int)(rtot - *R.begin() * R.size()));
            if(!L.empty() && !R.empty()){
                int m = (*R.begin() + *L.rbegin())/2;
                cost = min(cost, (int)(m * L.size() - ltot) + (int)(rtot - m * R.size()));
            }
        } while(cost > k);
        ans = max(ans, r - l + 1);
        r++;
    }

    cout << ans << '\n';
}


int32_t main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    
    int tt;
    cin >> tt;

    while(tt--){
        solve();
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 144ms
memory: 8772kb

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 11101st lines differ - expected: '40384', found: '57638'