이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... |