Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "algo/debug.h"
#else
#define debug(...) 42
#endif
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
vector<int> a(n),b(n);
map<int,int> aa;
for(int i=0;i<n;i++){
cin >> a[i];
aa[a[i]]=i+1;
}
b = a;
sort(b.begin(),b.end());
int q;
vector<int> c;
cin >> q;
int minn = b[0];
int l = 0;
for(int i=0;i<q;i++){
int tt;
cin >> tt;
c.push_back(aa[b[l]]);
l++;
}
for(int i=0;i<c.size();i++){
cout << c[i]<<"\n";
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1086 KuZ the Position
- Contest
- Bangladesh 2.0
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-08-16 16:25:01
- Judged At
- 2024-10-03 13:27:01
- Judged By
- Score
- 50
- Total Time
- 107ms
- Peak Memory
- 6.941 MiB