# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
232017 | 2020-05-15T17:42:23 Z | pere_gil | Gondola (IOI14_gondola) | C++14 | 0 ms | 0 KB |
#include "gondola.h" int replacement(int n, int gondolaSeq, int replacementSeq){ return -3; } int countReplacement(int n, int inputSeq){ return -3; } int valid(int n, int inputSeq[]){ int res=1; for(int i=0;i<n-1;i++){ if(inputSeq[i+1]!=1 and inputSeq[i+1]-1!=inputSeq[i]){ res=0; } if(inputSeq[i]==1){ if(i==0){ if(n!=inputSeq[n-1]){ res=0; } } if(i!=0){ if(inputSeq[i-1!=n]){ res=0; } } } } if(inputSeq[0]-1!=inputSeq[n-1]){ res=0; } return res; }