# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
559502 | Jomnoi | 곤돌라 (IOI14_gondola) | C++17 | 24 ms | 4548 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "gondola.h"
using namespace std;
const int MAX_N = 250005;
const int MOD = 1e9 + 9;
int valid(int n, int inputSeq[]) {
set <int> s;
int pos = -1;
for(int i = 0; i < n; i++) {
if(inputSeq[i] <= n) {
pos = i;
s.insert(inputSeq[i]);
}
}
if(s.size() < n) {
return 0;
}
if(pos == -1) {
return 1;
}
int start = (inputSeq[pos] - pos - 1 + 2 * n) % n + 1;
for(int i = 0; i < n; i++) {
if(inputSeq[i] <= n and inputSeq[i] != (start + i - 1) % n + 1) {
return 0;
}
}
return 1;
}
//----------------------
int location[MAX_N];
int replacement(int n, int gondolaSeq[], int replacementSeq[]) {
memset(location, -1, sizeof(location));
int start = 1, max_val = 0;
for(int i = 0; i < n; i++) {
if(gondolaSeq[i] <= n) {
start = (gondolaSeq[i] - i - 1 + 2 * n) % n + 1;
}
max_val = max(max_val, gondolaSeq[i]);
location[gondolaSeq[i]] = i;
}
int j = n + 1, len = 0;
for(int i = n + 1; i <= max_val; i++) {
if(location[i] == -1) {
continue;
}
replacementSeq[len++] = (location[i] + start - 1) % n + 1;
while(j < i) {
replacementSeq[len++] = j++;
}
}
return len;
}
//----------------------
int countReplacement(int n, int inputSeq[]) {
if(valid(n, inputSeq) == 0) {
return 0;
}
int max_val = 0;
for(int i = 0; i < n; i++) {
max_val = max(max_val, inputSeq[i]);
}
if(max_val == n) {
return 1;
}
// otherwise
return -3;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |