# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
558579 | Jomnoi | Gondola (IOI14_gondola) | C++17 | 33 ms | 4476 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;
}
//----------------------
bool chk[MAX_N];
int replacement(int n, int gondolaSeq[], int replacementSeq[]) {
int max_val = 0;
for(int i = 0; i < n; i++) {
chk[gondolaSeq[i]] = 1;
max_val = max(max_val, gondolaSeq[i]);
}
int len = 0;
for(int i = 1; i <= max_val; i++) {
if(chk[i] == false) {
replacementSeq[len++] = i;
}
}
return len;
}
//----------------------
int countReplacement(int n, int inputSeq[]) {
if(valid(n, inputSeq) == 0) {
return 0;
}
// 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... |