/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 320.0 KiB
#2 Wrong Answer 1ms 320.0 KiB
#3 Wrong Answer 1ms 320.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
#define ll long long int
#define vv vector<long long>
#define mpp map<long long,long long>
#define ms multiset<long long>
#define ss set<long long>
#define vp vector<pair<long long, long long>>
#define MOD 1000000007
#define YES cout<<"YES"<<endl
#define NO cout<<"NO"<<endl
#define all_v v.begin(),v.end()
#define all_a a.begin(),a.end()
#define sort_rev sort(v.rbegin(),v.rend());
#define all_n for(int i=0;i<n;i++)
#define print for(auto it:v)cout<<it<<" "
#define print_vp for(auto it:vp)cout<<it.first<<" "<<it.second<<endl
#define print_mp for(auto it:mp) cout<<it.first<<" "<<it.second<<endl
void requisite(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);cout.tie(nullptr);
}
int main() {
    requisite();
    ll t;
    cin>>t;
    while (t--){
        ll n;
        cin>>n;
        vv v(n);
        all_n{
            cin>>v[i];
        }
        sort(all_v);
        ll q;
        cin>>q;
        while (q--){
            ll x;
            cin>>x;
            ll i= lower_bound(v.begin(),v.end(),x)-v.begin();
            ll x1=0,x2=0;
            if (v[i]==x){
                x2=n-i-1;
                x1=i;
            }
            else{
                x2=n-i;
                x1=i;
            }
//            cout<<x1<<" "<<x2<<endl;
            cout<<min(x1,x2)<<endl;
        }
    }
    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 17:40:40
Judged At
2024-11-11 02:45:48
Judged By
Score
4
Total Time
1ms
Peak Memory
320.0 KiB