/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 508.0 KiB
#2 Wrong Answer 9ms 1.027 MiB
#3 Wrong Answer 9ms 1.035 MiB
#4 Wrong Answer 9ms 1.176 MiB
#5 Wrong Answer 9ms 1.066 MiB
#6 Wrong Answer 13ms 1.457 MiB
#7 Wrong Answer 11ms 1.371 MiB
#8 Wrong Answer 8ms 612.0 KiB
#9 Wrong Answer 3ms 624.0 KiB
#10 Wrong Answer 4ms 672.0 KiB
#11 Accepted 8ms 1.516 MiB
#12 Accepted 9ms 1.484 MiB
#13 Accepted 8ms 1.555 MiB
#14 Accepted 12ms 1.383 MiB
#15 Accepted 8ms 1.418 MiB
#16 Accepted 10ms 1.457 MiB
#17 Accepted 8ms 1.496 MiB

Code

#include <bits/stdc++.h>
#define endl '\n'
using namespace std;
#define ll long long
#define mod 1000000007
// #define int long long
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define CheckBit(x,k)   (x & (1LL << k))
#define SetBit(x,k)     (x |= (1LL << k))
#define ClearBit(x,k)   (x &= ~(1LL << k))
#define LSB(mask)       __builtin_ctzll(mask)
#define MSB(mask)       63-__builtin_clzll(mask) 
#define print(x)    cout << #x << " : " << x << endl
#define error1(x)   cerr << #x << " = " << (x) <<endl
#define coutall(v)  for(auto &it: v) cout<<it<<' '; cout<<endl
#define Abid_52     ios::sync_with_stdio(false);cin.tie(0),cin.tie(0)
#define error2(a,b) cerr<<"( "<<#a<<" , "<<#b<<" ) = ( "<<(a)<<" , "<<(b)<<" )\n"
#define UNIQUE(x)   sort(all(x)), x.erase(unique(all(x)), x.end()), x.shrink_to_fit()
template <typename T, typename U> T ceil(T x, U y) {return (x > 0 ? (x + y - 1) / y : x / y);}
template <typename T, typename U> T floor(T x, U y) {return (x > 0 ? x / y : (x - y + 1) / y);}
const int N = 1e5 + 10;
void solve()
{
    int n, m;
    cin >> n;
    vector<int> v(n);
    vector<int> two, one, three;
    two.push_back(-1);
    for (int i = 0; i < n; i++)
    {
        cin >> v[i];
        if (v[i] == 2)
        {
            two.push_back(i);
        }
        if (v[i] == 1)
        {
            one.push_back(i);
        }
    }
    two.push_back(n);
    reverse(all(v));
    for (int i = 0; i < n; i++)
    {
        if (v[i] == 3)
        {
            three.push_back(i);
        }
    }
    int mx = 0;
    for (int i = 0; i + 1 < two.size(); i++)
    {
        int l = two[i], r = two[i + 1];
        auto it = lower_bound(all(one), l);
        if (it == one.end())continue;
        int left = 0, right = 0;
        if (*it > l && *it < r)
        {
            left = *it;
        }
        int nr = n - r - 1;
        auto it1 = lower_bound(all(three), nr);
        if (it1 == three.end())continue;
        int idx = n - *it1 - 1;
        if (idx > l && idx < r)
        {
            right = idx;
        }
        mx = max(mx, right - left + 1);
    }
    cout << mx << endl;
}
int32_t main()
{
    Abid_52;
    int t = 1;
    cin >> t;
    for (int tc = 1; tc <= t; ++tc)
    {
        // cout << "Case " << tc << ": ";
        solve();
    }
}

Information

Submit By
Type
Submission
Problem
P1036 Perfect subarray
Language
C++20 (G++ 13.2.0)
Submit At
2024-03-02 15:16:10
Judged At
2024-03-02 15:16:10
Judged By
Score
55
Total Time
13ms
Peak Memory
1.555 MiB