# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
291340 | georgerapeanu | Gondola (IOI14_gondola) | C++11 | 13 ms | 1280 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 <cstdio>
#include <algorithm>
using namespace std;
inline int get_in_range(int st,int dr,int val){
int tmp = (val - st) % (dr - st + 1);
if(tmp < 0){
tmp += (dr - st + 1);
}
return tmp + st;
}
int stuff[250005];
int valid(int n, int inputSeq[])
{
int pos = -1;
for(int i = 0;i < n;i++){
if(inputSeq[i] <= n){
pos = i;
}
stuff[inputSeq[i]]++;
if(stuff[inputSeq[i]] > 1){
return 0;
}
}
for(int i = 0;i < n;i++){
if(inputSeq[i] <= n && inputSeq[i] != get_in_range(1,n,inputSeq[pos] + i - pos)){
return 0;
}
}
return 1;
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
int ma = 0,ma_pos;
int pos = 0;
for(int i = 0;i < n;i++){
stuff[gondolaSeq[i]] = i;
ma = max(ma,gondolaSeq[i]);
if(ma == gondolaSeq[i]){
ma_pos = i;
}
if(gondolaSeq[i] <= n){
pos = i;
}
}
for(int i = 0;i < n;i++){
gondolaSeq[i] = get_in_range(1,n,gondolaSeq[pos] + i - pos);
}
int len = 0;
for(int i = n + 1;i <= ma;i++){
if(stuff[i] == 0){
replacementSeq[len++] = gondolaSeq[ma_pos];
gondolaSeq[ma_pos] = i;
}
else{
replacementSeq[len++] = gondolaSeq[stuff[i]];
gondolaSeq[stuff[i]] = i;
}
}
return len;
}
//----------------------
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... |