/ SeriousOJ /

Record Detail

Runtime Error


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 328.0 KiB
#2 Runtime Error 2ms 436.0 KiB
#3 Runtime Error 3ms 576.0 KiB
#4 Runtime Error 3ms 580.0 KiB
#5 Accepted 71ms 6.461 MiB
#6 Accepted 72ms 6.469 MiB

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-10-03 13:29:12
Judged By
Score
50
Total Time
72ms
Peak Memory
6.469 MiB