QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#314566#7904. Rainbow SubarrayOobugoOWA 242ms11416kbC++142.0kb2024-01-25 20:38:222024-01-25 20:38:22

Judging History

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

  • [2024-06-09 00:00:26]
  • hack成功,自动添加数据
  • (/hack/652)
  • [2024-01-25 20:38:22]
  • 评测
  • 测评结果:WA
  • 用时:242ms
  • 内存:11416kb
  • [2024-01-25 20:38:22]
  • 提交

answer

#include <bits/stdc++.h>

#define OobugoO_IOS std::ios::sync_with_stdio(false),std::cin.tie(nullptr)
#define x first
#define y second
#define pii pair<int,int>
#define pll pair<long long,long long>

typedef long long ll;
typedef long double LD;

//using namespace std;

const int mod = 1e9 + 7;
const int N = 100010;
const int M = 1010;
const LD eps=1e-8;

void solve(){
    int n,k;  std::cin>>n>>k;
    std::vector<ll> a(n);
    for(int i=0;i<n;i++){
        std::cin>>a[i]; a[i]-=i;
    }
    int l=0,r=0;
    std::multiset<ll> s1,s2;
    ll sum1=0,sum2=0;
    auto keep_bal=[&](){
        while(s2.size()<s1.size()){
            s2.insert(*s1.rbegin());
            sum2+=*s1.rbegin();
            sum1-=*s1.rbegin();
            s1.erase(s1.find(*s1.rbegin()));
        }
        while(s1.size()<s2.size()){
            s1.insert(*s2.begin());
            sum1+=*s2.begin();
            sum2-=*s2.begin();
            s2.erase(s2.begin());
        }
    };
    s1.insert(a[0]); sum1+=a[0];
    int ans=1;
    while(r<n){
        keep_bal();
        ll num=*s1.rbegin();
        ll ret=(num*s1.size()-sum1)+(sum2-num*s2.size());
        if(ret>k){
            if(a[l]<=num){
                sum1-=a[l];
                s1.erase(s1.find(a[l]));
            }else{
                sum2-=a[l];
                s2.erase(s2.find(a[l]));
            }
            l++;
        }else{
            ans=std::max(ans,r-l+1);
            r++;
            if(r==n)    break;
            if(a[r]>=num){
                s2.insert(a[r]);
                sum2+=a[r];
            }else{
                s1.insert(a[r]);
                sum1+=a[r];
            }
        }
        if(l>r) r++;
    }
    std::cout<<ans<<"\n";
}

signed main(){

#ifdef Onlion_Judge
    freopen("IO/input.in", "r", stdin);
    freopen("IO/output.out", "w", stdout);
#endif

    OobugoO_IOS;
    int t = 1;  std::cin>>t;
    while (t--)
        solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 0
Accepted
time: 145ms
memory: 5864kb

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:

ok 11102 lines

Test #3:

score: -100
Wrong Answer
time: 242ms
memory: 11416kb

input:

1
500000 17244641009859
54748096 75475634 204928248 276927808 84875072 103158867 27937890 322595515 186026685 45468307 69240390 139887597 188586447 373764525 121365644 310156469 185188306 60350786 211308832 384695957 370562147 208427221 35937909 267590963 126478310 275357775 55361535 335993561 36696...

output:

92681

result:

wrong answer 1st lines differ - expected: '172998', found: '92681'