# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
935726 | anton | Stone Arranging 2 (JOI23_ho_t1) | C++17 | 419 ms | 23956 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int, int>
signed main(){
int n;
cin>>n;
vector<pii> st;
map<int, int> oc;
for(int i = 0; i<n; i++){
int a;
cin>>a;
if(oc[a] == 0){
st.push_back({a, i});
oc[st.back().first]++;
}
else{
while(st.size()>0 && st.back().first !=a){
oc[st.back().first]--;
st.pop_back();
}
st.back().second = i;
}
}
vector<int> res;
for(auto e: st){
while(res.size()<=e.second){
res.push_back(e.first);
}
}
for(int i = 0; i<n; i++){
cout<<res[i]<<endl;
}
}
컴파일 시 표준 에러 (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... |