# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
559504 | Jomnoi | Gondola (IOI14_gondola) | C++17 | 29 ms | 4528 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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) {
if(location[j] == -1) {
replacementSeq[len++] = j;
}
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;
}
Compilation message (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... |