# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
297971 | Plurm | 곤돌라 (IOI14_gondola) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gondola.h"
int valid(int n, int inputSeq[])
{
int offs = -1;
for(int i = 0; i < n; i++){
if(inputSeq[i] == 1) offs = i;
}
for(int i = 0; i < n; i++){
if(inputSeq[(i+offs) % n] <= n && inputSeq[(i+offs) % n] != i+1) return 0;
}
return 1;
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
int offs = 0;
int dummy = 0;
int mx = -1;
int* expect = new int[250005];
fill(expect, expect+250005, -1);
for(int i = 0; i < n; i++){
if(gondolaSeq[i] <= n) offs = i-gondolaSeq[i]+1;
else expect[gondolaSeq[i]] = i;
if(gondolaSeq[i] > mx){
mx = gondolaSeq[i];
dummy = i;
}
}
int rpidx = 0;
for(int i = n+1; i <= mx; i++){
if(expect[i] == -1){
replacementSeq[rpidx++] = gondolaSeq[dummy];
gondolaSeq[dummy] = i;
}else{
replacementSeq[rpidx++] = gondolaSeq[expect[i]];
gondolaSeq[expect[i]] = i;
}
}
return rpidx;
}
//----------------------
int countReplacement(int n, int inputSeq[])
{
if(!valid(n, inputSeq)) return 0;
else return 1;
}