# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
537065 | timreizin | Gondola (IOI14_gondola) | C++17 | 30 ms | 4992 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 "gondola.h"
#include <vector>
#include <algorithm>
#include <set>
#include <numeric>
using namespace std;
int valid(int n, int inputSeq[])
{
vector<int> a(n);
int ind = min_element(inputSeq, inputSeq + n) - inputSeq;
for (int i = 0; i < n; ++i) a[(i - ind + n) % n] = inputSeq[i] - 1;
if (set<int>(a.begin(), a.end()).size() != n) return 0;
for (int i = 0; i < n; ++i) if (a[i] < n && a[i] != i) return 0;
return 1;
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
vector<int> a(n);
int ind = min_element(gondolaSeq, gondolaSeq + n) - gondolaSeq;
for (int i = 0; i < n; ++i) a[(i - ind + n) % n] = gondolaSeq[i];
vector<int> inds(n);
iota(inds.begin(), inds.end(), 0);
sort(inds.begin(), inds.end(), [&a](int l, int r){ return a[l] < a[r]; });
int l = 0, next = n + 1;
for (int i : inds)
{
if (a[i] < next) continue;
replacementSeq[l++] = i + 1;
for (; next < a[i]; ++next) replacementSeq[l++] = next;
++next;
}
return l;
}
//----------------------
int countReplacement(int n, int inputSeq[])
{
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... |