#include<iostream>
#include<cstdio>
#include<fstream>
#include<algorithm>
#include<cmath>
#include<map>
#include<queue>
#include<set>
#include<stack>
#include<string>
#include<cstring>
#include<vector>
#include "gondola.h"
using namespace std;
#define for1(i,n) for(int i=1;i<=(int)n;i++)
#define for0(i,n) for(int i=0;i<=(int)n;i++)
#define forn(i,n) for(int i=n;i>=1;i--)
#define fo(i,x,y) for(int i=x;i<=(int)y;i++)
#define fr(i,x,y) for(int i=x;i>=(int)y;i--)
#define pb push_back
#define mp make_pair
#define LL long long
const LL Mod=1000*1000*1000+7;
int is_lessn[250002];
int num[250002];
int valid(int n, int inputSeq[])
{
for0(i,n-1)
num[inputSeq[i]]++;
for1(i,250002)
if(num[i]>=2)
return 0;
for0(i,n-1)
{
if(inputSeq[i]<=n)
{
int N=inputSeq[i];
fo(j,i+1,n-1)
{
N++;
if(N>n)
N-=n;
if(inputSeq[j]<=n && inputSeq[j]!=N)
return 0;
}
fo(j,0,i-1)
{
N++;
if(N>n)
N-=n;
if(inputSeq[j]<=n && inputSeq[j]!=N)
return 0;
}
return 1;
}
}
return 1;
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
vector<pair<int,int> > V;
for0(i,n-1)
{
if(gondolaSeq[i]<=n)
{
int N=gondolaSeq[i];
V.push_back({gondolaSeq[i],N});
fo(j,i+1,n-1)
{
N++;
if(N>n)
N-=n;
V.push_back({gondolaSeq[j],N});
}
fo(j,0,i-1)
{
N++;
if(N>n)
N-=n;
V.push_back({gondolaSeq[j],N});
}
}
}
sort(V.begin(),V.end());
int q=n+1;
int num=-1;
for0(i,V.size()-1)
{
if(V[i].first!=V[i].second)
{
num++;
replacementSeq[num]=V[i].second;
q++;
fo(j,q-1,V[i].first-1)
{
num++;
replacementSeq[num]=j;
}
q=V[i].first+1;
}
}
return (num+1);
}
//----------------------
int countReplacement(int n, int inputSeq[])
{
return -3;
}
/*
4 5
8 12 2 10 11
*/
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
496 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
580 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
588 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
720 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
736 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
772 KB |
Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
900 KB |
Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
964 KB |
Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
1152 KB |
Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |