# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
284739 |
2020-08-28T00:36:48 Z |
Ozy |
Gondola (IOI14_gondola) |
C++17 |
|
1 ms |
256 KB |
#include "gondola.h"
using namespace std;
#define rep(i,a,b) for (int i = (a); i <= (b); i++)
int visitados[250002];
int valid(int n, int inputSeq[])
{
int pos, val, a, dif;
bool res;
pos = -1;
val = -1;
rep(i,0,n-1) {
if (inputSeq[i] <= n) {
pos = i;
val = inputSeq[i];
break;
}
}
if (pos == -1) return 1;
dif = pos - val;
res = true;
rep(i,0,n-1) {
if (inputSeq[i] <= n) {
a = inputSeq[i] + dif;
a += n;
a %= n;
if (a != i+1) res = false;
}
}
if (res) return 1;
else return 0;
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
int MAX,res,cont;
rep(i,0,n-1) visitados[i] = 0;
MAX = 0;
rep(i,0,n-1){
visitados[gondolaSeq[i]] = 1;
if (gondolaSeq[i] < MAX) MAX = gondolaSeq[i];
}
res = MAX - n;
cont = 0;
rep (i,1,MAX-1) {
if (visitados[i] == 0) {
replacementSeq[cont] = i;
cont++;
}
}
return res;
}
//----------------------
int countReplacement(int n, int inputSeq[])
{
return -3;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
Integer -76 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
Integer -76 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
Integer -76 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
256 KB |
Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |