/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Time Exceeded ≥3098ms ≥532.0 KiB
#2 Time Exceeded ≥3098ms ≥524.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;


#define ll long long
#define ld long double
#define pie 2*(acos(0.0))
#define yes cout<<"YES\n"
#define no cout<<"NO\n"
#define pb push_back
#define endl "\n"
#define lcm(a,b) (a*b)/(__gcd<ll>(a,b))
#define mod 1000000007
#define srt(v) sort(v.begin(),v.end())
#define rsrt(v) sort(v.rbegin(),v.rend())
#define ALLAHU_AKBAR ios::sync_with_stdio(false); cin.tie(nullptr);


void sir()
{
    ll n; cin>>n;
    vector<ll>a(n), b(n);
    for(auto &e:a) cin>>e;
    for(auto &e:b) cin>>e;

    ll c = 0;
    for(ll i=1; i<n; i++)
    {
        while(b[i]==b[i-1]) c++, i++;
        i--;

    }
    cout<<n-c<<endl;
}

int main() {
    ALLAHU_AKBAR

    ll t = 1;
    cin>>t;
    while(t--)
    {
        sir();
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1224 Maximize the max
Contest
LUCC Presents Kick & Code Intra LU Programming Contest
Language
C++17 (G++ 13.2.0)
Submit At
2025-09-01 07:44:25
Judged At
2025-09-01 07:44:25
Judged By
Score
0
Total Time
≥3098ms
Peak Memory
≥532.0 KiB