QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#277050 | #7904. Rainbow Subarray | miku_HY | TL | 0ms | 3592kb | C++20 | 3.9kb | 2023-12-06 14:58:07 | 2023-12-06 14:58:08 |
Judging History
answer
/*[[
⣇⣿⠘⣿⣿⣿⡿⡿⣟⣟⢟⢟⢝⠵⡝⣿⡿⢂⣼⣿⣷⣌⠩⡫⡻⣝⠹⢿⣿⣷ ]],[[
⡆⣿⣆⠱⣝⡵⣝⢅⠙⣿⢕⢕⢕⢕⢝⣥⢒⠅⣿⣿⣿⡿⣳⣌⠪⡪⣡⢑⢝⣇ ]],[[
⡆⣿⣿⣦⠹⣳⣳⣕⢅⠈⢗⢕⢕⢕⢕⢕⢈⢆⠟⠋⠉⠁⠉⠉⠁⠈⠼⢐⢕⢽ ]],[[
⡗⢰⣶⣶⣦⣝⢝⢕⢕⠅⡆⢕⢕⢕⢕⢕⣴⠏⣠⡶⠛⡉⡉⡛⢶⣦⡀⠐⣕⢕ ]],[[
⡝⡄⢻⢟⣿⣿⣷⣕⣕⣅⣿⣔⣕⣵⣵⣿⣿⢠⣿⢠⣮⡈⣌⠨⠅⠹⣷⡀⢱⢕ ]],[[
⡝⡵⠟⠈⢀⣀⣀⡀⠉⢿⣿⣿⣿⣿⣿⣿⣿⣼⣿⢈⡋⠴⢿⡟⣡⡇⣿⡇⡀⢕ ]],[[
⡝⠁⣠⣾⠟⡉⡉⡉⠻⣦⣻⣿⣿⣿⣿⣿⣿⣿⣿⣧⠸⣿⣦⣥⣿⡇⡿⣰⢗⢄ ]],[[
⠁⢰⣿⡏⣴⣌⠈⣌⠡⠈⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣬⣉⣉⣁⣄⢖⢕⢕⢕ ]],[[
⡀⢻⣿⡇⢙⠁⠴⢿⡟⣡⡆⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣵⣵⣿ ]],[[
⡻⣄⣻⣿⣌⠘⢿⣷⣥⣿⠇⣿⣿⣿⣿⣿⣿⠛⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿ ]],[[
⣷⢄⠻⣿⣟⠿⠦⠍⠉⣡⣾⣿⣿⣿⣿⣿⣿⢸⣿⣦⠙⣿⣿⣿⣿⣿⣿⣿⣿⠟ ]],[[
⡕⡑⣑⣈⣻⢗⢟⢞⢝⣻⣿⣿⣿⣿⣿⣿⣿⠸⣿⠿⠃⣿⣿⣿⣿⣿⣿⡿⠁⣠ ]],[[
⡝⡵⡈⢟⢕⢕⢕⢕⣵⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣶⣿⣿⣿⣿⣿⠿⠋⣀⣈⠙ ]],[[
⡝⡵⡕⡀⠑⠳⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⢉⡠⡲⡫⡪⡪⡣ ]],*/
#include<bits/stdc++.h>
#define pb push_back
#define x first
#define y second
#define int long long
using namespace std;
using ll =long long ;
using pii =pair<int,int>;
using pll=pair<ll,ll>;
using pcc=pair<char,char>;
bool cmp(pll a,pll b){
return a.y<b.y;
}
struct cmp1{
bool operator()(pair<ll,ll>a,pair<ll,ll>b){
if(a.x==b.x)return a.y>b.y;
return a.x>b.x;
}
};
const int mod=998244353;
ll ksm(ll a,ll b){
ll ans=1;
while(b){
if(b&1){
ans*=a;
ans=ans%mod;
}
a=a*a;a%=mod;
b>>=1;
}
return ans;
}
ll gcd(ll a,ll b){
ll t=a%b;
while(t){
a=b;
b=t;
t=a%b;
}
return b;
}
ll lcm(ll a,ll b){
return a/gcd(a,b)*b;
}
ll get_inv(ll x){
return ksm(x,mod-2);
}
const int N=1e6+10;
ll n,k;
ll a[N];
/*
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
*/
bool check(ll x){
if(x==1)return true;
map<ll,int>mp;
// cout<<x<<endl;
ll ans=1e18;
set<ll>zh,fu;
ll res=0;
int lenzh=0,lenfu=0;
ll base=0,basex=0;
for(int i=1;i<=n;i++){
ll w=a[i]-i;
if(w==base)basex++;
mp[w]++;
if(w<base){
lenfu++;
fu.insert(w);
}
if(w>base){
lenzh++,zh.insert(w);
}
res+=abs(w-base);
if(i>x){
ll tw=a[i-x]-(i-x);
mp[tw]--;
res-=abs(tw-base);
if(tw>base){
lenzh--;
if(mp[tw]==0)zh.erase(zh.find(tw));
}
if(tw<base){
lenfu--;
if(mp[tw]==0)fu.erase(fu.find(tw));
}
if(tw==base)basex--;
}
ll tt=0;
while(lenzh>basex+lenfu){
tt++;
if(tt>=1000){
return false;
}
ll w=abs(*zh.begin()-base);
res-=w*abs(basex+lenfu-lenzh);
// cout<<w*abs(basex+lenfu-lenzh)<<endl;
fu.insert(base);w=*zh.begin();
lenfu+=basex;
basex=mp[w];
base=w;
lenzh-=mp[w];
zh.erase(zh.begin());
}
while(lenfu>basex+lenzh){
tt++;
if(tt>=1000){
return false;
}
ll w=abs(*--fu.end()-base);
res-=w*abs(basex+lenzh-lenfu);
// cout<<w*abs(basex+lenzh-lenfu)<<endl;
zh.insert(base);
w=*--fu.end();
lenzh+=basex;
basex=mp[w];
base=w;
lenfu-=mp[w];
fu.erase(--fu.end());
}
if(i>=x)ans=min(ans,res);
// cout<<res<<" s "<<base<<" b "<<i<<endl;
}
if(ans<=k)return true;
return false;
}
void solve(){
cin>>n>>k;
for(int i=1;i<=n;i++)cin>>a[i];
ll l=1,r=n;
while(l<r){
ll mid=(l+r+1)>>1;
if(check(mid))l=mid;
else r=mid-1;
}
cout<<l<<endl;
}
signed main(){
ios::sync_with_stdio(false);cin.tie(0);
int _=1;
cin>>_;
while(_--)solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3592kb
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 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...