/ SeriousOJ /

Record Detail

Runtime Error


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Runtime Error double free or corruption (out) 19ms 1.355 MiB
#3 Runtime Error double free or corruption (out) 21ms 1.148 MiB
#4 Runtime Error double free or corruption (out) 20ms 1.105 MiB
#5 Accepted 60ms 6.438 MiB
#6 Accepted 61ms 6.406 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;

        vector <int> ar(n);

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

        vector<int> mnn(n);

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

        map <int , int> cnt;

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

        sort(mnn.begin(), mnn.end());

        int q;

        cin >> q;

        int mn = 0;

        while(q--){
            int tmp;

            cin >> tmp;

            int ans = cnt[mnn[mn]];

            cout << ans << endl;

            ar[ ans-1 ] = 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 16:11:43
Judged At
2024-10-03 13:28:13
Judged By
Score
50
Total Time
61ms
Peak Memory
6.438 MiB