# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
924037 | Sunbae | Stone Arranging 2 (JOI23_ho_t1) | C++17 | 42 ms | 8480 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 200005;
int A[N], m;
vector<int>C;
int pos(int x){return lower_bound(C.begin(), C.end(), x) - C.begin();}
int B[N];
vector<int> V[N];
bool cmp(int x, int y){return V[x].front() < V[y].front();}
signed main(){
int n; scanf("%d", &n);
for(int i = 0; i<n; ++i) scanf("%d", A+i), C.push_back(A[i]);
sort(C.begin(), C.end());
C.resize(unique(C.begin(), C.end()) - C.begin());
m = C.size();
for(int i = 0; i<n; ++i) A[i] = pos(A[i]);
for(int i = 0; i<n; ++i) V[A[i]].push_back(i);
for(int i = 0; i<m; ++i) B[i] = i;
sort(B, B+m, cmp);
int Right = -1;
for(int i = 0; i<m; ++i){
int x = B[i];
int l = max(Right+1, V[x].front());
int r = V[x].back();
if(l > r) continue;
if(l > Right) for(int j = l; j<=r; ++j) printf("%d\n", C[x]);
Right = max(Right, r);
}
}
컴파일 시 표준 에러 (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... |