/ SeriousOJ /

Record Detail

Runtime Error


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 332.0 KiB
#2 Runtime Error 3ms 576.0 KiB
#3 Runtime Error 4ms 676.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef double dl;

#define endl "\n"
#define optimize() ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define fraction() cout.unsetf(ios::floatfield); cout.precision(10); cout.setf(ios::fixed,ios::floatfield);

int main()
{
    optimize();

        int n;

        cin >> n;

        int ar[n+100];

        for(int i = 1; i <= n; i++)   cin >> ar[i];

        int mnn[n+100];

        for(int i = 1; i <= n; i++)  mnn[i] = ar[i];

        map <int , int> cnt;

        for(int i = 1; i <= n; i++)  {
                cnt[ar[i]] = i;
        }

        sort(mnn+1, mnn+n+1);

        int q;

        cin >> q;


        int mn = 1;
        while(q--){
            int tmp;


            cin >> tmp;

            cout << cnt[mnn[mn]] << endl;

            ar[ cnt[mnn[mn]] ] = tmp;

            mn++;
        }

    return 0;
}

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 15:59:25
Judged At
2024-11-11 03:16:38
Judged By
Score
10
Total Time
4ms
Peak Memory
676.0 KiB