/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 22ms 532.0 KiB
#3 Accepted 28ms 788.0 KiB
#4 Accepted 30ms 820.0 KiB
#5 Accepted 81ms 7.816 MiB
#6 Accepted 88ms 7.883 MiB

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 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 n;
    cin>>n;
    vv v(n);
    all_n{
        cin>>v[i];
    }
    ll q;
    cin>>q;
    mpp mp;
    all_n{
        mp[v[i]]=i+1;
    }
    for (int i = 1; i <=q ; ++i) {
        ll x;
        cin>>x;
        for(auto it:mp){
            cout<<it.second<<endl;
            mp.erase(it.first);
            mp[x]=it.second;
            break;
        }
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1086 KuZ the Position
Contest
Bangladesh 2.0
Language
C++17 (G++ 13.2.0)
Submit At
2024-08-16 15:59:30
Judged At
2024-08-16 15:59:30
Judged By
Score
100
Total Time
88ms
Peak Memory
7.883 MiB