# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
769058 | danikoynov | Stone Arranging 2 (JOI23_ho_t1) | C++14 | 221 ms | 19144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define endl '\n'
using namespace std;
typedef long long ll;
void speed()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
const int maxn = 2e5 + 10;
int n, a[maxn], b[maxn];
map < int, pair < int, int > > mp;
void solve()
{
cin >> n;
for (int i = 1; i <= n; i ++)
cin >> a[i];
stack < int > st;
for (int i = 1; i <= n; i ++)
{
if (mp[a[i]].first == 0)
{
mp[a[i]] = {i, i};
st.push(a[i]);
continue;
}
while(st.top() != a[i])
{
mp[st.top()] = {0, 0};
st.pop();
}
mp[a[i]].second = i;
}
for (pair < int, pair < int, int > > cur : mp)
{
for (int i = cur.second.first; i <= cur.second.second; i ++)
b[i] = cur.first;
}
for (int i = 1; i <= n; i ++)
cout << b[i] << endl;
}
int main()
{
solve();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |