이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define endl '\n'
using namespace std;
const int MAXN = 2e5 + 10;
void speed()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
int n, a[MAXN];
void read()
{
cin >> n;
for (int i = 1; i <= n; ++ i)
cin >> a[i];
}
unordered_map < int, int > mp;
void solve()
{
stack < pair <int, int> > s;
for (int i = 1; i <= n; ++ i)
{
if(mp[a[i]] == 0)
{
mp[a[i]] ++;
s.push(make_pair(a[i], 1));
}
else
{
int cnt = 0;
while(s.top().first != a[i])
{
cnt += s.top().second;
mp[s.top().first] -= s.top().second;
s.pop();
}
cnt += s.top().second;
s.pop();
s.push(make_pair(a[i], cnt+1));
mp[a[i]] = cnt+1;
}
}
vector < int > v;
while(!s.empty())
{
int x = s.top().first, y = s.top().second;
while(y --)
{
v.push_back(x);
}
s.pop();
}
for (int i = v.size()-1; i >= 0; -- i)
cout << v[i] << endl;
}
int main()
{
speed();
read();
solve();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |