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;
bool check_valid_pair(int lvalue, int rvalue, int n){
if(lvalue <= 0 || rvalue <= 0)
return false;
if(lvalue > n || rvalue > n)
return true;
if((lvalue + 1) % n != rvalue % n)
return false;
return true;
}
int valid(int n, int inputSeq[]){
if(n == 1)
return true;
for(int i = 0; i < n - 1; ++i)
if(!check_valid_pair(inputSeq[i], inputSeq[i + 1], n))
return false;
if(!check_valid_pair(inputSeq[n - 1], inputSeq[0], n))
return false;
sort(inputSeq, inputSeq + n);
for(int i = 0; i < n - 1; ++i)
if(inputSeq[i] == inputSeq[i + 1])
return false;
return true;
}
int replacement(int n, int gondolaSeq[], int replacementSeq[]){
int start = 0;
for(int i = 0; i < n; ++i){
if(gondolaSeq[i] <= n){
start = i + 1 - gondolaSeq[i];
if(start < 0)
start += n;
break;
}
}
vector<pair<int, int>> v(n);
for(int i = 0; i < n; ++i)
v[i] = {gondolaSeq[i], i};
sort(v.begin(), v.end());
int cnt_replacement = 0, new_n = n;
for(int i = 0; i < n; ++i){
int idx;
if(v[i].second >= start)
idx = v[i].second + 1 - start;
else
idx = n + v[i].second + 1 - start;
if(v[i].first > n){
replacementSeq[cnt_replacement++] = idx;
++new_n;
while(v[i].first != new_n){
replacementSeq[cnt_replacement++] = new_n;
++new_n;
}
}
}
return cnt_replacement;
}
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... |