/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 584.0 KiB
#2 Accepted 2ms 492.0 KiB
#3 Accepted 1ms 540.0 KiB
#4 Time Exceeded ≥2096ms ≥580.0 KiB
#5 Time Exceeded ≥2097ms ≥2.027 MiB
#6 Time Exceeded ≥2093ms ≥1.25 MiB
#7 Time Exceeded ≥2093ms ≥632.0 KiB
#8 Time Exceeded ≥2004ms ≥1.277 MiB
#9 Time Exceeded ≥2084ms ≥1.277 MiB
#10 Time Exceeded ≥2096ms ≥1.094 MiB
#11 Accepted 28ms 832.0 KiB
#12 Accepted 50ms 652.0 KiB
#13 Accepted 1ms 540.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
#define MOD 1000000007
#define test int t;cin>>t;while(t--)
#define pb push_back
#define vi vector<int>
#define vl vector<ll>
#define F first
#define S second
#define yes cout<<"YES"<<'\n';
#define no cout<<"NO"<<'\n';
#define endl "\n"
#define all(v) v.begin(),v.end()
#define print(v) for(auto it:v) cout<<it<<" "; cout<<endl;
#define srt(v) sort(v.begin(),v.end());
#define rsrt(v) sort(v.rbegin(),v.rend());
#define rvs(v) reverse(v.begin(),v.end());
#define coutv(v) for(auto it:v)cout<<it<<' ';cout<<endl;
#define cinv(v) for(auto &it:v)cin>>it;
#define rall(v) v.rbegin(),v.rend()
#define gcd(a,b) __gcd(a,b)
#define lcm(a,b) (a*b)/gcd(a,b)
#define PI 2*acos(0.0)
#define pr pair<int,int>
#define Tasrik ios_base::sync_with_stdio(0);  cin.tie(0); cout.tie(0);

void abrakadabra()
{
    ll n,q,x;
    cin>>n;
    vl ar(n+1);
    for(int i=1; i<=n; i++)
        cin>>ar[i];

    cin>>q;

    while(q--){
        cin>>x;
  ll ans=0;
        for(int i=1; i<x; i++)
        {
            for(int j=x+1; j<=n; j++)
            {
                if( (ar[i]>ar[x] && ar[x]>ar[j]) || (ar[i]<ar[x] && ar[x]<ar[j]))
                    ans++;
            }
        }
        cout<<ans<<endl;
    }

}

int main ()
{
    Tasrik;
    test
    abrakadabra();
    return 0;
}


Information

Submit By
Type
Submission
Problem
P1079 Roy and Query (Easy Version)
Contest
Brain Booster #6
Language
C++17 (G++ 13.2.0)
Submit At
2024-10-03 16:39:39
Judged At
2024-10-03 16:39:39
Judged By
Score
44
Total Time
≥2097ms
Peak Memory
≥2.027 MiB