Submission #194170

# Submission time Handle Problem Language Result Execution time Memory
194170 2020-01-15T21:45:02 Z juanmartinez111 Gondola (IOI14_gondola) C++14
0 / 100
2 ms 504 KB
#include<bits/stdc++.h>
#include "gondola.h"

int valid(int n, int inputSeq[]){
  int ans[n];
  int ini=0,fin=0;
  bool si=true;
  for(int i=0;i<n;i++){
    if(inputSeq[i]==n)fin=i;
    if(inputSeq[i]==1)ini=i;
    int cnt=1;
    int pos=0;
    while(ini!=fin){
        ans[pos]=inputSeq[ini];
        ini=(ini+1)%n;
        cnt++;
        pos++;
    }
    ans[pos]=inputSeq[fin];
    for(int i=0;i<n;i++){
        if(ans[i]!=i+1)si=false;
    }
  }
    if(si)return 1;
    else return 0;
}

//----------------------

int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
  return -2;
}

//----------------------

int countReplacement(int n, int inputSeq[])
{
  return -3;
}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB Integer -2 violates the range [0, 350000]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Integer -2 violates the range [0, 350000]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Integer -2 violates the range [0, 350000]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 128 KB Integer -3 violates the range [0, 1000000008]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 504 KB Integer -3 violates the range [0, 1000000008]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB Integer -3 violates the range [0, 1000000008]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Integer -3 violates the range [0, 1000000008]
2 Halted 0 ms 0 KB -