Submission #230305

# Submission time Handle Problem Language Result Execution time Memory
230305 2020-05-09T14:00:00 Z chubyxdxd Gondola (IOI14_gondola) C++11
Compilation error
0 ms 0 KB
#include "gondola.h"
#include <bits/stdc++.h>

using namespace std;
int valid(int n, int inputSeq[])
{
  for(int i=1;i<n;i++){
    if(inputSeq[i]==1 and inputSeq[i-1]!=n)return 0;
    if(inputSeq[i]!=1 and inputSeq[i-1]+1!=v[i])return 0;
  }
  return 1;
}

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

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

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

int countReplacement(int n, int inputSeq[])
{
  return -3;
}

Compilation message

gondola.cpp: In function 'int valid(int, int*)':
gondola.cpp:9:44: error: 'v' was not declared in this scope
     if(inputSeq[i]!=1 and inputSeq[i-1]+1!=v[i])return 0;
                                            ^