이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gondola.h"
#include<bits/stdc++.h>
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("avx2")
using namespace std;
int valid(int n, int inputSeq[])
{
bool acc = 1;
set<int> s;
for(int i = 0 ; i< n ; i++)
{
inputSeq[i]--;
s.insert(inputSeq[i]);
if(inputSeq[i] < n)
acc = 0;
}
if((int)s.size() != n)
return 0;
if(acc)
return 1;
for(int i = 0 ; i < n ; i++)
{
if(inputSeq[i] < n)
{
int j = i;
int ok = 1;
do {
j = (j + 1) % n;
if (inputSeq[j] >= n)
continue;
if (inputSeq[j] != (inputSeq[i] + j - i + n) % n) {
ok = 0;
break;
}
}
while(i != j);
return ok;
}
}
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
vector<pair<int, int>> s;
vector<int> perm(n);
for(int i = 0 ; i < n ; i++)
perm[i] = i;
for(int i = 0 ; i < n ; i++)
gondolaSeq[i]--;
for(int i = 0 ; i < n ; i++)
{
if(gondolaSeq[i] >= n)
continue;
perm[i] = gondolaSeq[i];
int j = i;
do
{
j = (j + 1)%n;
perm[j] = (gondolaSeq[i] + j - i + n)%n;
} while (i != j);
break;
}
for(int i = 0 ; i < n ; i++)
{
if(gondolaSeq[i] >= n)
s.push_back({gondolaSeq[i] , i});
}
sort(s.begin() , s.end());
int t = 0;
int cnt = n - 1;
for(auto [x , i] : s)
{
int last = perm[i];
while (cnt < x)
{
cnt++;
replacementSeq[t++] = last + 1;
assert(t <= 250000);
last = cnt;
}
}
return t;
}
//----------------------
const int M = 1e9 + 9;
int countReplacement(int n, int gondolaSeq[])
{
vector<pair<int, int>> s;
vector<int> all(n);
vector<int> perm(n);
for(int i = 0 ; i < n ; i++)
perm[i] = i;
for(int i = 0 ; i < n ; i++)
{
gondolaSeq[i]--;
all[i] = gondolaSeq[i];
}
sort(all.begin() , all.end());
all.erase(unique(all.begin() , all.end()) , all.end());
if((int)all.size() != n)
return 0;
for(int i = 0 ; i < n ; i++)
{
if(gondolaSeq[i] >= n)
continue;
perm[i] = gondolaSeq[i];
int j = i;
do
{
j = (j + 1)%n;
if(gondolaSeq[j] < n && gondolaSeq[j] != (gondolaSeq[i] + j - i + n)%n)
return 0;
perm[j] = (gondolaSeq[i] + j - i + n)%n;
} while (i != j);
break;
}
int t = 0;
for(int i = 0 ; i < n ; i++)
{
if(gondolaSeq[i] >= n)
{
t++;
s.push_back({gondolaSeq[i] , i});
}
}
sort(s.begin() , s.end());
int cnt = n - 1;
long long nbWays = 1;
for(auto [x , i] : s)
{
long long now = 1;
while (cnt < x - 1)
{
now = (now * t)%M;
cnt++;
}
nbWays = (nbWays + now - 1 + M)%M;
cnt++;
t--;
}
return (int)nbWays;
}
//int main()
//{
// int n = 100000;
// int v[n];
// int f[1000000];
// for(int i = 0 ; i < n ; i++)
// {
// v[i] = rand()%250000 + 1;
// }
// cout<<replacement(n , v , f);
//}
컴파일 시 표준 에러 (stderr) 메시지
gondola.cpp: In function 'int valid(int, int*)':
gondola.cpp:10:14: warning: control reaches end of non-void function [-Wreturn-type]
10 | set<int> s;
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |