# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
68813 |
2018-08-18T14:44:23 Z |
Vahan |
Gondola (IOI14_gondola) |
C++17 |
|
32 ms |
3188 KB |
#include "gondola.h"
#include<vector>
#include<algorithm>
#include<iostream>
using namespace std;
long long x[200000],xx[200000];
long long mod=1000000009;
vector<long long> g;
int valid(int n, int inputSeq[])
{
vector<long long> v;
for(long long i=0;i<n;i++)
xx[i]=inputSeq[i];
sort(xx,xx+n);
long long t=0;
for(long long i=1;i<n;i++)
if(xx[i]==xx[i-1])
{
t=1;
break;
}
if(t==1)
return 0;
for(long long i=0;i<n;i++)
{
if(inputSeq[i]<=n)
{
v.push_back(inputSeq[i]);
x[inputSeq[i]]=i;
}
}
t=0;
for(long long i=1;i<v.size();i++)
{
if(v[i-1]>v[i])
t++;
}
if(t>=2)
return 0;
if(t==1 && v.back()>v[0])
return 0;
t=0;
for(long long i=1;i<v.size();i++)
{
if(v[i-1]<v[i])
{
if(v[i]-v[i-1]!=x[v[i]]-x[v[i-1]])
{
t=1;
break;
}
}
else if(v[i-1]>v[i])
{
if((n-(v[i-1]-v[i]))!=x[v[i]]-x[v[i-1]])
{
t=1;
break;
}
}
}
if(t==1)
return 0;
return 1;
}
long long binpow(long long a,long long b)
{
if(b==0)
return 1;
if(b%2==0)
{
long long c=binpow(a,b/2);
return (c*c)%mod;
}
else
{
long long c=binpow(a,b/2);
return (a*(c*c)%mod)%mod;
}
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
/*vector<pair<int,int> >v;
for(int i=0;i<n;i++)
{
if(gondolaSeq[i]<n)
{
a[i]=gondolaSeq[i];
}
}*/
return -2;
}
//----------------------
int countReplacement(int n, int inputSeq[])
{
if(valid(n,inputSeq)==0)
return 0;
for(long long i=0;i<n;i++)
{
if(inputSeq[i]>n)
g.push_back(inputSeq[i]);
}
sort(g.begin(),g.end());
long long k=g.size();
long long pat=1;
for(long long i=0;i<g.size();i++)
{
long long u;
if(i==0)
u=g[i]-n-1;
else
u=g[i]-g[i-1]-1;
pat*=binpow(k,u);
pat%=mod;
k--;
}
if(g.size()==n)
pat*=n;
pat%=mod;
return pat;
}
Compilation message
gondola.cpp: In function 'int valid(int, int*)':
gondola.cpp:33:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(long long i=1;i<v.size();i++)
~^~~~~~~~~
gondola.cpp:43:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(long long i=1;i<v.size();i++)
~^~~~~~~~~
gondola.cpp: In function 'int countReplacement(int, int*)':
gondola.cpp:110:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(long long i=0;i<g.size();i++)
~^~~~~~~~~
gondola.cpp:121:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(g.size()==n)
~~~~~~~~^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
248 KB |
Output is correct |
2 |
Correct |
2 ms |
356 KB |
Output is correct |
3 |
Correct |
3 ms |
392 KB |
Output is correct |
4 |
Correct |
3 ms |
596 KB |
Output is correct |
5 |
Correct |
3 ms |
624 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
624 KB |
Output is correct |
2 |
Correct |
3 ms |
624 KB |
Output is correct |
3 |
Correct |
3 ms |
624 KB |
Output is correct |
4 |
Correct |
3 ms |
624 KB |
Output is correct |
5 |
Correct |
3 ms |
624 KB |
Output is correct |
6 |
Correct |
14 ms |
1956 KB |
Output is correct |
7 |
Correct |
27 ms |
1956 KB |
Output is correct |
8 |
Correct |
16 ms |
3044 KB |
Output is correct |
9 |
Correct |
10 ms |
3044 KB |
Output is correct |
10 |
Correct |
28 ms |
3172 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
3172 KB |
Output is correct |
2 |
Correct |
3 ms |
3172 KB |
Output is correct |
3 |
Correct |
3 ms |
3172 KB |
Output is correct |
4 |
Correct |
3 ms |
3172 KB |
Output is correct |
5 |
Correct |
2 ms |
3172 KB |
Output is correct |
6 |
Correct |
14 ms |
3172 KB |
Output is correct |
7 |
Correct |
21 ms |
3172 KB |
Output is correct |
8 |
Correct |
18 ms |
3172 KB |
Output is correct |
9 |
Correct |
9 ms |
3172 KB |
Output is correct |
10 |
Correct |
26 ms |
3188 KB |
Output is correct |
11 |
Correct |
2 ms |
3188 KB |
Output is correct |
12 |
Correct |
2 ms |
3188 KB |
Output is correct |
13 |
Correct |
11 ms |
3188 KB |
Output is correct |
14 |
Correct |
2 ms |
3188 KB |
Output is correct |
15 |
Correct |
28 ms |
3188 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
3188 KB |
Integer -2 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
3188 KB |
Integer -2 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
3188 KB |
Integer -2 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
3188 KB |
Output is correct |
2 |
Correct |
3 ms |
3188 KB |
Output is correct |
3 |
Correct |
3 ms |
3188 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
3188 KB |
Output is correct |
2 |
Correct |
3 ms |
3188 KB |
Output is correct |
3 |
Correct |
3 ms |
3188 KB |
Output is correct |
4 |
Correct |
2 ms |
3188 KB |
Output is correct |
5 |
Correct |
2 ms |
3188 KB |
Output is correct |
6 |
Correct |
3 ms |
3188 KB |
Output is correct |
7 |
Correct |
3 ms |
3188 KB |
Output is correct |
8 |
Correct |
2 ms |
3188 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
3188 KB |
Output is correct |
2 |
Correct |
3 ms |
3188 KB |
Output is correct |
3 |
Correct |
2 ms |
3188 KB |
Output is correct |
4 |
Correct |
3 ms |
3188 KB |
Output is correct |
5 |
Correct |
3 ms |
3188 KB |
Output is correct |
6 |
Correct |
2 ms |
3188 KB |
Output is correct |
7 |
Correct |
3 ms |
3188 KB |
Output is correct |
8 |
Correct |
3 ms |
3188 KB |
Output is correct |
9 |
Incorrect |
32 ms |
3188 KB |
Integer -667809712 violates the range [0, 1000000008] |
10 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
3188 KB |
Output is correct |
2 |
Correct |
2 ms |
3188 KB |
Output is correct |
3 |
Correct |
3 ms |
3188 KB |
Output is correct |
4 |
Correct |
2 ms |
3188 KB |
Output is correct |
5 |
Correct |
2 ms |
3188 KB |
Output is correct |
6 |
Correct |
2 ms |
3188 KB |
Output is correct |
7 |
Correct |
2 ms |
3188 KB |
Output is correct |
8 |
Correct |
3 ms |
3188 KB |
Output is correct |
9 |
Incorrect |
30 ms |
3188 KB |
Integer -667809712 violates the range [0, 1000000008] |
10 |
Halted |
0 ms |
0 KB |
- |