This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
const ll maxn = 1e4 + 5;
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
ll n;
cin >> n;
ll a[maxn];
map<ll, ll> d;
for (ll i = 1; i <= n; i++){
cin >> a[i];
}
for (ll i = 1; i <= n; i++){
d[a[i]] = i;
}
ll check;
for (ll i = 1; i <= n; i++){
check = d[a[i]];
for (ll j = 1; j <= check - i + 1; j++){
cout << a[i] << endl;
}
i = check;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |