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 "gondola.h"
#include <bits/stdc++.h>
using namespace std;
int valid(int n, int inputSeq[])
{
int baseline = -1;
int baselineIdx = -1;
for (int x = 0; x < n; x++){
if (inputSeq[x] <= n){
baseline = inputSeq[x];
baselineIdx = x;
}
}
unordered_set<int> hmm;
for (int x = 0; x < n; x++){
if (hmm.count(inputSeq[x]) != 0) return 0;
hmm.insert(inputSeq[x]);
}
if (baseline == -1){
return 1;
}
//baseline is supposed to be at x+1
int shiftsRight = baselineIdx+1 - baseline;
int shifted[n];
for (int x = 0; x < n; x++) {
shifted[x] = inputSeq[(x + shiftsRight + n)%n];
}
hmm.clear();
for (int x = 0; x < n; x++){
if (shifted[x] <= n && shifted[x] != x+1) return 0;
if (hmm.count(shifted[x]) != 0) return 0;
hmm.insert(shifted[x]);
}
return 1;
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
return -2;
}
//----------------------
int countReplacement(int n, int inputSeq[])
{
return -3;
}
# | 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... |