QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#314920#7904. Rainbow SubarrayDecadeWA 125ms9636kbC++143.1kb2024-01-26 14:37:052024-01-26 14:37:06

Judging History

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

  • [2024-06-09 00:00:26]
  • hack成功,自动添加数据
  • (/hack/652)
  • [2024-01-26 14:37:06]
  • 评测
  • 测评结果:WA
  • 用时:125ms
  • 内存:9636kb
  • [2024-01-26 14:37:05]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define double long double
typedef long long ull;
typedef unsigned long long uull;
typedef pair<int, int> PII;
mt19937 rnd1(random_device{}());
mt19937_64 rnd2(random_device{}());
uniform_int_distribution<int> dist1(0,2e18);    //定义dist1为0——100的随机整数
uniform_real_distribution<double> dist2(-10,10);    //定义dist2为-10——10的随机浮点数
//#define mp make_pair
//fflush(stdout);
inline void print(__int128 x){//输出模板 
    if(x<0){
        putchar('-');
        x=-x;
    }
    if(x>9) print(x/10);
    putchar(x%10+'0');
}
inline int read()
{
    int X = 0;
    bool flag = 1;
    char ch = getchar();
    while (ch < '0' || ch > '9')
    {
        if (ch == '-')
            flag = 0;
        ch = getchar();
    }
    while (ch >= '0' && ch <= '9')
    {
        X = (X << 1) + (X << 3) + ch - '0';
        ch = getchar();
    }
    if (flag)
        return X;
    return ~(X - 1);
}
const ull mod = 998244353,INF = 2e18;
ull qpow(ull a, ull b)
{
    ull res = 1;
    a %= mod;
    assert(b >= 0);
    for (; b; b >>= 1)
    {
        if (b & 1)
            res = res * a % mod;
        a = a * a % mod;
    }
    return res;
}
inline int gcd(int a, int b) { return b == 0 ? a : gcd(b, a % b); }
inline int lcm(int a, int b) { return a / gcd(a, b) * b; }
const int N = 500010,M = 200100;

int a[N];
multiset<int> q1,q2;

int check()
{
    auto it = q2.begin();
    int m = (int)*it;
    if(q1.size()>=q2.size())
    {
        it = q1.end();
        it--;
        m = (int)*it;
        q1.erase(it);
        q2.insert(m);
    }
    else if(q2.size()-q1.size()==2)
    {
        it = q2.begin();
        m = (int)*it;
        q1.insert(m);
        q2.erase(it);
        m = (int)*q2.begin();
    }
    return m;
}

void solve()
{
    int n,k;
    q1.clear(),q2.clear();
    cin>>n>>k;
    for(int i=1;i<=n;i++) cin>>a[i],a[i] -= i;
    int sum1 = 0,sum2 = 0,l = 1,ans = 1,cnt1 = 0,cnt2 = 0;
    if(a[1]>0) sum1 = a[1],cnt1 = 1;
    else sum2 = a[1],cnt2 = 1;
    q2.insert(a[1]);
    for(int i=2;i<=n;i++)
    {
        if(a[i]>0) sum1 += a[i],cnt1++;
        else sum2 += a[i],cnt2++;
        int mid = check();
        if(a[i]<mid) q1.insert(a[i]);
        else q2.insert(a[i]);
        mid = check();
        int len = i-l+1;
        if(abs(mid*cnt2-sum2)+abs(mid*cnt1-sum1)<=k) ans = max(ans,len);
        else 
        {
            while(1)
            {
                if(a[l]>0) sum1 -= a[l],cnt1--;
                else sum2 -= a[l],cnt2--;
                if(q1.find(a[l])!=q1.end())q1.erase(q1.find(a[l]));
                else q2.erase(q2.find(a[l])); 
                mid = check();
                l++;
                len = i-l+1;
                if(abs(mid*cnt2-sum2)+abs(mid*cnt1-sum1)<=k) break;
            }
            ans = max(ans,i-l+1);
        }
    }
    cout<<ans<<endl;
}

signed main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t = 1;
    cin>>t;
    while (t--)
        solve();
    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
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
Wrong Answer
time: 125ms
memory: 9636kb

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

result:

wrong answer 2nd lines differ - expected: '4', found: '5'