# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
521135 | krit3379 | Gondola (IOI14_gondola) | C++14 | 0 ms | 0 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.
#ifndef __GONDOLA_H__
#define __GONDOLA_H__
#ifdef __cplusplus
extern "C" {
#endif
int valid(int n, int inputSeq[]);
int replacement(int n, int gondolaSeq[], int replacementSeq[]);
int countReplacement(int n, int inputSeq[]);
#ifdef __cplusplus
}
#endif
#endif /* __GONDOLA_H__ */