이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define f first
#define s second
using namespace std;
signed main() {
int n; cin >> n; map<int,int> m;
stack<pair<int,int>> t;
for(int i=0;i<n;i++) {
int x; cin >> x;
if(m[x]) {
int c = 1; while(t.top().f != x) {c += t.top().s, m[t.top().f]--; t.pop();}
int y = t.top().s; t.pop(); t.push({x,y+c});
}
else {t.push({x,1}); m[x]++;}
}
vector<int> v(n); int k=n-1;
stack<pair<int,int>> q = t;
while(!t.empty()) {
for(int i=0;i<t.top().s;i++) v[k-i] = t.top().f;
k -= t.top().s; t.pop();
}
for(auto i:v) cout << i << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |