이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "gondola.h"
using namespace std;
#define N 100005
int arr[N], mx, pos[3 * N], cnt, p;
bool note[3 * N];
long long mod = 1e9 + 9, ans = 1;
vector <int> vc;
int valid(int n, int inputSeq[]){
for (int i = 0;i < n;i++){
if (mx < inputSeq[i]){
mx = inputSeq[i];
p = i;
}
pos[inputSeq[i]] = i;
if (note[inputSeq[i]]) return 0;
note[inputSeq[i]] = 1;
}
for (int i = 0;i < n;i++)
if (inputSeq[i] <= n){
int now = inputSeq[i];
arr[i] = now;
for (int j = i + 1;j < n;j++){
now++;
if (now > n) now = 1;
arr[j] = now;
}
for (int j = 0;j < i;j++){
now++;
if (now > n) now = 1;
arr[j] = now;
}
break;
}
int ok = 1;
for (int i = 0;i < n;i++)
if (inputSeq[i] <= n && inputSeq[i] != arr[i])
ok = 0;
return ok;
}
int replacement(int n, int gondolaSeq[], int replacementSeq[]){
if (!valid(n, gondolaSeq)) return 0;
for (int i = 0;i < n;i++)
if (gondolaSeq[i] > n)
vc.push_back(gondolaSeq[i]);
for (int i = n + 1;i <= mx;i++){
if (!note[i]) {
replacementSeq[i - n - 1] = arr[p];
arr[p] = i;
}
else replacementSeq[i - n - 1] = arr[pos[i]];
}
return mx - n;
}
long long gg(long long x, int y){
long long s = 1;
while (y){
if (y % 2) s = (s * x) % mod;
x = (1ll * x * x) % mod;
y /= 2;
}
return s;
}
int countReplacement(int n, int inputSeq[]){
ans = 1;
if (!valid(n, inputSeq)) return 0;
for (int i = 0;i < n;i++)
if (inputSeq[i] > n)
vc.push_back(inputSeq[i]);
sort(vc.begin(), vc.end());
reverse(vc.begin(), vc.end());
int bef = n;
while (!vc.empty()){
ans = (ans * gg(vc.size(), vc.back() - bef - 1)) % mod;
bef = vc.back();
vc.pop_back();
}
return ans;
}
# | 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... |