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>
#define ff first
#define ss second
using namespace std;
using ll = long long;
ll n;
vector<ll> a;
int main(){
cin >> n;
a.resize(n);
map<int, int> tmp;
for(int i = 0; i < n; i++) cin >> a[i], tmp[a[i]] += 1;
int lx = 0, rx = n - 1;
while(lx <= rx){
if(a[lx] == a[rx]){
for(int i = 0; i < rx - lx + 1; i++) cout << a[lx] << '\n';
lx = rx + 1;
rx = n - 1;
if(lx >= n) break;
}
while(a[lx] != a[rx] && tmp[a[lx]] > 1) rx -= 1;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |