# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
955443 | Baytoro | Stone Arranging 2 (JOI23_ho_t1) | C++17 | 235 ms | 16068 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ios ios::sync_with_stdio(false); cin.tie(NULL);
#define pb push_back
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define fr first
#define sc second
#define mp make_pair
#define ll long long
//#define int ll
#define double long double
const ll INF=1e18,N=1e6+5;
void solve(){
int n;cin>>n;
map<int,int> mpp;
vector<int> ans(n);
vector<pair<int,int> > st;
for(int i=0;i<n;i++){
int x;cin>>x;
if(mpp[x]>0){
while(!st.empty()){
if(st.back().fr==x) break;
mpp[st.back().fr]--;
st.pop_back();
}
}
st.pb(mp(x,i));
mpp[x]++;
}
st.pb(mp(-1,n));
for(int i=0;i<st.size()-1;i++){
int k=st[i].sc;
while(k<st[i+1].sc){
ans[k]=st[i].fr;
k++;
}
}
for(int i=0;i<n;i++) cout<<ans[i]<<'\n';
}
int main(){
solve();
}
컴파일 시 표준 에러 (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... |