QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#643478#7904. Rainbow SubarrayLeft0807WA 613ms19068kbC++202.5kb2024-10-15 21:21:252024-10-15 21:21:25

Judging History

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

  • [2024-10-15 21:21:25]
  • 评测
  • 测评结果:WA
  • 用时:613ms
  • 内存:19068kb
  • [2024-10-15 21:21:25]
  • 提交

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 BIT[N], cBIT[N], a[N];
vector<int> nums;
ordered_set s;
int n, k;


void add(int x, int val, int c){
    for(int i = x; i <= nums.size(); i += i&-i){
        BIT[i] += val, cBIT[i] += c;
    }
}

int qry(int x){
    int res = 0;
    for(int i = x; i > 0; i -= i&-i) res += BIT[i];
    return res;
}
    
int cqry(int x){
    int res = 0;
    for(int i = x; i > 0; i -= i&-i) res += cBIT[i];
    return res;
}


int find(int x){
    int res = lower_bound(all(nums), x) - nums.begin();
    if(nums[res] == x) res++;
    return res;
}

int cal(int l, int r){
    int res = INF;
    int avg = s.find_by_order((r-l+1)/2)->first;
    
    for(int j = -10; j <= 10; j++){
        avg += j;

        int l_c = cqry(find(avg));
        int r_c = (r - l + 1) - l_c;
        int l_sum = qry(find(avg));
        int r_sum = qry(nums.size()) - l_sum;
            
        res = min(res, l_c * avg - l_sum + r_sum - r_c * avg);

        avg -= j;
    }

    return res;
};

void solve(){
    cin >> n >> k;    
    nums.clear();
    nums.push_back(0);
    for(int i = 1; i <= n; i++){
        cin >> a[i];
        a[i] -= i;
        if(a[i] < 0) a[i] = -a[i];
        nums.push_back(a[i]);
    }

    sort(all(nums));
    nums.erase(unique(all(nums)), nums.end());

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

    while(r <= n){
        add(find(a[r]), a[r], 1);
        s.insert({a[r], r});

        while(l < r && cal(l, r) > k){
            add(find(a[l]), -a[l], -1);
            s.erase({a[l], l});
            l++;
        }

        ans = max(ans, r - l + 1);
        r++;
    }

    while(l <= n){
        add(find(a[l]), -a[l], -1);
        l++;
    }

    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: 1ms
memory: 7768kb

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: 613ms
memory: 19068kb

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

result:

wrong answer 3rd lines differ - expected: '3', found: '2'