QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#643543#7904. Rainbow SubarrayLeft0807WA 1ms7796kbC++202.4kb2024-10-15 21:41:432024-10-15 21:41:45

Judging History

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

  • [2024-10-15 21:41:45]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:7796kb
  • [2024-10-15 21:41:43]
  • 提交

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<int, null_type, less<int>, 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)/2) + *s.find_by_order((r-l+1)/2);
    avg /= 2;

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

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

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

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

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

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

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

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

詳細信息

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 7796kb

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
1
5
1
1

result:

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