/ SeriousOJ /

Record Detail

Runtime Error


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Runtime Error 2ms 564.0 KiB
#3 Runtime Error 3ms 680.0 KiB
#4 Runtime Error 3ms 904.0 KiB
#5 Accepted 61ms 6.457 MiB
#6 Accepted 61ms 6.293 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;

            int ans = cnt[mnn[mn]];

            cout << ans << endl;

            ar[ ans ] = tmp;

            mn++;
        }

    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 16:07:30
Judged At
2024-10-03 13:28:31
Judged By
Score
50
Total Time
61ms
Peak Memory
6.457 MiB