QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#643501 | #7904. Rainbow Subarray | Left0807 | WA | 691ms | 18124kb | C++20 | 2.6kb | 2024-10-15 21:28:38 | 2024-10-15 21:28:46 |
Judging History
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;
for(int j = -10; j <= 10; j++){
if((r-l)/2 + j < 0) continue;
if((r-l)/2 + j >= s.size()) continue;
avg = s.find_by_order((r-l)/2 + j)->first;
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);
s.erase({a[l], l});
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: 7760kb
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: 691ms
memory: 18124kb
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'