#include "gondola.h"
#include <algorithm>
#include <iostream>
#include <cassert>
#include <numeric>
#include <vector>
#include <set>
typedef long long llong;
const int MAXN = 100000 + 10;
const int INF = 1e9;
std::set <int> s;
int n;
int getPosDiff(int last, int curr)
{
if (last > curr)
{
return n - last + curr;
}
return curr - last;
}
int valid(int N, int inputSeq[])
{
n = N;
int minPos = 0;
for (int i = 1 ; i < n ; ++i)
{
if (s.count(inputSeq[i]))
{
return 0;
}
s.insert(inputSeq[i]);
if (inputSeq[i] < inputSeq[minPos])
{
minPos = i;
}
}
if (inputSeq[minPos] > n)
{
return 1;
}
for (int i = minPos - 1 ; i >= std::max(0, minPos - inputSeq[minPos] + 1) ; --i)
{
if (inputSeq[i] <= n)
{
return 0;
}
}
if (minPos + 1 < inputSeq[minPos])
{
for (int i = n - 1 ; i >= n + minPos + 1 - inputSeq[minPos] ; --i)
{
if (inputSeq[i] <= n)
{
return 0;
}
}
}
int last = 0;
int lastPos = -INF;;
for (int i = minPos ; i < n ; ++i)
{
if (inputSeq[i] <= n)
{
if (last > inputSeq[i])
{
return 0;
}
if (getPosDiff(lastPos, i) != inputSeq[i] - last)
{
return 0;
}
last = inputSeq[i];
lastPos = i;
}
}
for (int i = 1 ; i < minPos ; ++i)
{
if (inputSeq[i] <= n)
{
if (last > inputSeq[i])
{
return 0;
}
if (getPosDiff(lastPos, i) != inputSeq[i] - last)
{
return 0;
}
last = inputSeq[i];
lastPos = i;
}
}
return 1;
}
//----------------------
int a[MAXN];
int replacement(int N, int gondolaSeq[], int replacementSeq[])
{
return -2;
n = N;
int minPos = 0;
for (int i = 1 ; i < n ; ++i)
{
if (gondolaSeq[i] < gondolaSeq[minPos])
{
minPos = i;
}
}
// int cnt = inPu
// for (int i = minPos - 1 )
}
//----------------------
int countReplacement(int n, int inputSeq[])
{
return -3;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Integer -2 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Integer -2 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Integer -2 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
216 KB |
Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |