# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
53112 |
2018-06-28T12:09:35 Z |
zetapi |
Gondola (IOI14_gondola) |
C++14 |
|
15 ms |
1660 KB |
#include "gondola.h"
#include "bits/stdc++.h"
using namespace std;
#define ll long long
const int MAX=1e6;
const int mod=1e9+9;
int arr[MAX],fre[MAX];
ll power(ll base,ll exp)
{
ll res=1;
while(exp)
{
if(exp%2)
res*=base;
base*=base;
res%=mod;
base%=mod;
exp/=2;
}
return res;
}
int valid(int n, int inputSeq[])
{
int N=n,ok=1;
for(int A=0;A<N;A++)
{
fre[inputSeq[A]]++;
if(fre[inputSeq[A]]>1)
return 0;
}
for(int A=0;A<N;A++)
{
if(inputSeq[A]<=N)
{
ok=0;
inputSeq[A]--;
for(int B=A;B>=0;B--)
{
arr[B]=inputSeq[A];
inputSeq[A]--;
if(inputSeq[A]<0)
inputSeq[A]+=N;
}
inputSeq[A]=arr[A];
for(int B=A+1;B<N;B++)
{
inputSeq[A]++;
if(inputSeq[A]>=N)
inputSeq[A]=0;
arr[B]=inputSeq[A];
}
inputSeq[A]=arr[A]+1;
break;
}
}
if(ok)
return 1;
for(int A=0;A<N;A++)
arr[A]++;
for(int A=0;A<N;A++)
{
if(inputSeq[A]<=N and arr[A]!=inputSeq[A])
return 0;
}
return 1;
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
return -2;
}
//----------------------
int countReplacement(int n, int inputSeq[])
{
if(!valid(n,inputSeq))
return 0;
sort(inputSeq,inputSeq+n);
vector<ll> vec;
for(int A=0;A<n;A++)
if(inputSeq[A]>n)
vec.push_back(inputSeq[A]);
if(vec.empty())
return 1;
sort(vec.begin(),vec.end());
ll res=1,ptr=0,cnt=vec.size();
while(ptr<n and inputSeq[ptr]<=n)
++ptr;
for(int A=0;A<vec.size()-1;A++)
{
while(ptr<n and inputSeq[ptr]<=vec[A])
++ptr,--cnt;
//cout<<ptr<<"\n";
if(vec[A+1]-vec[A]>1)
{
res*=power(vec[A+1]-vec[A]-1,cnt);
res%=mod;
}
}
if(vec[0]!=n+1)
{
res*=power((vec[0]-n-1),vec.size());
res%=mod;
}
if(inputSeq[0]>n)
{
res*=n;
res%=mod;
}
return res;
}
/*signed main()
{
ios_base::sync_with_stdio(false);
int arr[]={3,4};
cout<<countReplacement(2,arr);
return 0;
}*/
Compilation message
gondola.cpp: In function 'int countReplacement(int, int*)':
gondola.cpp:97:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int A=0;A<vec.size()-1;A++)
~^~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
248 KB |
Output is correct |
2 |
Correct |
2 ms |
356 KB |
Output is correct |
3 |
Correct |
2 ms |
536 KB |
Output is correct |
4 |
Correct |
2 ms |
616 KB |
Output is correct |
5 |
Correct |
1 ms |
616 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
664 KB |
Output is correct |
2 |
Correct |
2 ms |
664 KB |
Output is correct |
3 |
Correct |
2 ms |
664 KB |
Output is correct |
4 |
Correct |
2 ms |
664 KB |
Output is correct |
5 |
Correct |
2 ms |
664 KB |
Output is correct |
6 |
Correct |
8 ms |
1056 KB |
Output is correct |
7 |
Correct |
14 ms |
1132 KB |
Output is correct |
8 |
Correct |
11 ms |
1328 KB |
Output is correct |
9 |
Correct |
5 ms |
1328 KB |
Output is correct |
10 |
Correct |
13 ms |
1456 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
1456 KB |
Output is correct |
2 |
Correct |
2 ms |
1456 KB |
Output is correct |
3 |
Correct |
2 ms |
1456 KB |
Output is correct |
4 |
Correct |
2 ms |
1456 KB |
Output is correct |
5 |
Correct |
2 ms |
1456 KB |
Output is correct |
6 |
Correct |
7 ms |
1456 KB |
Output is correct |
7 |
Correct |
14 ms |
1456 KB |
Output is correct |
8 |
Correct |
12 ms |
1456 KB |
Output is correct |
9 |
Correct |
5 ms |
1456 KB |
Output is correct |
10 |
Correct |
15 ms |
1568 KB |
Output is correct |
11 |
Correct |
2 ms |
1568 KB |
Output is correct |
12 |
Correct |
2 ms |
1568 KB |
Output is correct |
13 |
Correct |
9 ms |
1660 KB |
Output is correct |
14 |
Correct |
2 ms |
1660 KB |
Output is correct |
15 |
Correct |
15 ms |
1660 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
1660 KB |
Integer -2 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
1660 KB |
Integer -2 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
1660 KB |
Integer -2 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
1660 KB |
Output is correct |
2 |
Correct |
2 ms |
1660 KB |
Output is correct |
3 |
Correct |
2 ms |
1660 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
1660 KB |
Output is correct |
2 |
Correct |
1 ms |
1660 KB |
Output is correct |
3 |
Correct |
2 ms |
1660 KB |
Output is correct |
4 |
Correct |
2 ms |
1660 KB |
Output is correct |
5 |
Incorrect |
2 ms |
1660 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
1660 KB |
Output is correct |
2 |
Correct |
2 ms |
1660 KB |
Output is correct |
3 |
Correct |
2 ms |
1660 KB |
Output is correct |
4 |
Correct |
2 ms |
1660 KB |
Output is correct |
5 |
Incorrect |
2 ms |
1660 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
1660 KB |
Output is correct |
2 |
Correct |
2 ms |
1660 KB |
Output is correct |
3 |
Correct |
2 ms |
1660 KB |
Output is correct |
4 |
Correct |
2 ms |
1660 KB |
Output is correct |
5 |
Incorrect |
2 ms |
1660 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |