# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
923238 | ttamx | Stone Arranging 2 (JOI23_ho_t1) | C++14 | 292 ms | 29028 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int N=2e5+5;
int n;
int a[N],ans[N];
map<int,vector<int>> mp;
stack<int> s;
int main(){
cin.tie(nullptr)->sync_with_stdio(false);
cin >> n;
s.emplace(0);
for(int i=1;i<=n;i++){
cin >> a[i];
auto &p=mp[a[i]];
if(!p.empty()){
while(s.top()>p.back()){
mp[a[s.top()]].pop_back();
s.pop();
}
}
s.emplace(i);
p.emplace_back(i);
}
for(int i=n,col;i>=1;i--){
if(s.top()==i){
col=a[s.top()];
s.pop();
}
ans[i]=col;
}
for(int i=1;i<=n;i++)cout << ans[i] << "\n";
}
컴파일 시 표준 에러 (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... |