/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 3ms 532.0 KiB
#2 Accepted 17ms 708.0 KiB
#3 Accepted 29ms 844.0 KiB
#4 Accepted 46ms 876.0 KiB
#5 Accepted 33ms 2.582 MiB
#6 Accepted 35ms 2.66 MiB

Code

//! In The Name Of Allah

#include <bits/stdc++.h>

using namespace std;

#define int long long
#define endl '\n'
#define pb push_back
#define pob pop_back
#define make M
#define F first
#define S second
#define all(s) (s).begin(), (s).end()
#define rall(s) s.rbegin(), s.rend()
#define sz(x) (int)x.size()
#define mem(a, b) memset(a, b, sizeof(a))
#define log2(x) 31 - __builtin_clz(x)
#define getbit(n, i) (((n) & (1LL << (i))) != 0)
#define TxtIO                         \
    freopen("sample.in", "r", stdin); \
    freopen("sample.out", "w", stdout);
#define Fokinnir_moto_kaj_koris_na \
    ios_base::sync_with_stdio(0);  \
    cin.tie(0);                    \
    cout.tie(0);
#define py cout << "YES" << endl
#define pn cout << "NO" << endl
#define PI acos(-1)

typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int, int> pii;
typedef vector<pii> vii;
typedef double dl;

const ll Goriber_INF = 1e18;
const ll Mod = 1e9 + 7;
const ll N = 2e5 + 12;

void Goriber_solve()
{
    int n;
    cin >> n;
    priority_queue<pii> pq;
    for(int i = 1; i <= n; i++){
        int x;
        cin >> x;
        pq.push({-x,i});
    }
    int q;
    cin >> q;
    while(q--){
        int val;
        cin >> val;
        int la = pq.top().S;
        cout << la << endl;
        pq.pop();
        pq.push({-val,la});
    }
}
signed main()
{

    Fokinnir_moto_kaj_koris_na 
    int _ = 1,h = 0;
    //cin >> _;
    while (_--)
    {
        //cout<<"Case "<<++h<<": ";
        Goriber_solve();
    }
}

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 17:03:37
Judged At
2024-08-16 17:03:37
Judged By
Score
100
Total Time
46ms
Peak Memory
2.66 MiB