이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gondola.h"
#include <bits/stdc++.h>
#define ll long long
#define endl "\n"
using namespace std;
const ll mod = 1e9 + 9;
int valid(int n, int a[])
{
set<ll> s;
for (ll i = 0; i < n; i++)
s.insert(a[i]);
if (s.size() != n)
return 0;
ll st = -1, b[n];
for (ll i = 0; i < n; i++)
if (a[i] <= n)
st = i;
if (st == -1)
return 1;
b[st] = a[st];
for (ll i = st + 1; i < st + n; i++)
b[i % n] = b[(i - 1 + n) % n] % n + 1;
// for (ll i = 0; i < n; i++)
// cout << b[i] << " ";
// cout << endl;
for (ll i = 0; i < n; i++)
if (a[i] <= n and a[i] != b[i])
return 0;
return 1;
}
//----------------------
int replacement(int n, int a[], int replacementSeq[])
{
ll st = -1, b[n];
for (ll i = 0; i < n; i++)
if (a[i] <= n)
st = i;
if (st == -1)
iota(b, b + n, 1);
else
{
b[st] = a[st];
for (ll i = st + 1; i < st + n; i++)
b[i % n] = b[(i - 1 + n) % n] % n + 1;
}
ll ptr = 0, mx = max_element(a, a + n) - a;
ll ind[a[mx] + 1];
for (ll i = 0; i <= a[mx]; i++)
ind[i] = -1;
for (ll i = 0; i < n; i++)
ind[a[i]] = i;
for (ll i = n + 1; i <= a[mx]; i++)
if (ind[i] != -1)
replacementSeq[ptr++] = b[ind[i]], b[ind[i]] = i;
else
replacementSeq[ptr++] = b[mx], b[mx] = i;
return ptr;
}
//----------------------
int countReplacement(int n, int a[])
{
if (!valid(n, a))
return 0;
ll ans = 1, mx = max_element(a, a + n) - a;
ll ind[a[mx] + 1];
for (ll i = 0; i <= a[mx]; i++)
ind[i] = -1;
for (ll i = 0; i < n; i++)
ind[a[i]] = i;
ll b[n];
for (ll i = 0; i < n; i++)
b[i] = a[i];
sort(b, b + n);
for (ll i = n + 1; i <= a[mx]; i++)
if (ind[i] == -1)
ans = ans * (n - (lower_bound(b, b + n, i) - b)) % mod;
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
gondola.cpp: In function 'int valid(int, int*)':
gondola.cpp:15:18: warning: comparison of integer expressions of different signedness: 'std::set<long long int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
15 | if (s.size() != n)
| ~~~~~~~~~^~~~
# | 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... |