이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "gondola.h"
using namespace std;
using ll = long long;
int valid(int n, int a[])
{
bool y = true;
for (int i = 1; y && i < n; ++i) y = (a[i] - a[i - 1] + n) % n == 1;
return y;
}
//----------------------
int replacement(int n, int a[], int ans[])
{
int org = -1;
for (int i = 0; i < n; ++i)
if (a[i] <= n)
{
int norg = (i - a[i] + 1 + n) % n;
assert (org == -1 || org == norg);
org = norg;
}
if (org == -1) org = 0;
vector < pair < int, int > > v;
for (int i = 0; i < n; ++i) if (a[i] > n) v.push_back ({ a[i], (i - org + n) % n + 1 });
sort (v.begin (), v.end ());
int i = 0;
for (auto &x : v)
{
while (x.first != x.second)
{
ans[i] = x.second;
x.second = i + n + 1;
++i;
}
}
return i;
}
//----------------------
int countReplacement(int n, int a[])
{
int org = -1;
for (int i = 0; i < n; ++i)
if (a[i] <= n)
{
int norg = (i - a[i] + 1 + n) % n;
if (org != -1 && org != norg) return 0;
org = norg;
}
bool ind = false;
if (org == -1) org = 0, ind = true;
vector < ll > v;
for (int i = 0; i < n; ++i) if (a[i] > n) v.push_back (a[i]);
sort (v.begin (), v.end ());
ll vs = v.size (), ans = 1, p = n, MOD = 1000000009;
for (auto &x : v)
{
ll m = 1;
for (int i = 0; i < x - p - 1; ++i) (m *= vs) %= MOD;
(ans *= m) %= MOD;
--vs;
p = x;
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
gondola.cpp: In function 'int countReplacement(int, int*)':
gondola.cpp:53:8: warning: variable 'ind' set but not used [-Wunused-but-set-variable]
53 | bool ind = false;
| ^~~
# | 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... |