QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#643211#7904. Rainbow SubarrayLeft0807TL 0ms3548kbC++202.5kb2024-10-15 19:51:522024-10-15 19:51:55

Judging History

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

  • [2024-10-15 19:51:55]
  • 评测
  • 测评结果:TL
  • 用时:0ms
  • 内存:3548kb
  • [2024-10-15 19:51:52]
  • 提交

answer

#include <bits/stdc++.h>
#define int long long
#define pii pair<int, int>
#define all(a) a.begin(), a.end()
using namespace std;

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());


void solve(){
    int n, k;
    cin >> n >> k;
    vector<int> a(n+1);
    vector<int> nums;
    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());

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

    vector<int> BIT(nums.size() + 1), cBIT(nums.size() + 1);

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

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

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

    auto cal = [&](int l)->int{
        int res = INF;

        for(int i = 1; i <= l-1; i++){
            add(find(a[i]), a[i], 1);
        }

        for(int i = l; i <= n; i++){
            add(find(a[i]), a[i], 1);

            int avg = qry(nums.size()) / l;
            for(int j = -1; j <= 1; j++){
                avg += j;

                int l_c = cqry(find(avg));
                int r_c = cqry(nums.size()) - 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;
            }

            add(find(a[i - l + 1]), -a[i - l + 1], -1);
        }

        for(int i = n - l + 2; i <= n; i++) add(find(a[i]), -a[i], -1);

        return res;
    };

    int i = 1;
    for(int j = n-1; j > 0; j /= 2){
        while(i + j <= n && cal(i + j) <= k) i += j;
    }

    cout << i << '\n';
}

int32_t main(){
    int tt;
    cin >> tt;

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

// 7 2 5 5 4 11 7
// 1 2 3 4 5 6 7
// 6 0 2 1 1 5 0
// 6 0 2 1 -1 5 0

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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
Time Limit Exceeded

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

result: