This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#include "gondola.h"
#define F first
#define S second
#define PB push_back
#define sz(s) (int(s.size()))
#define bit(n, k) (((n)>>(k))&1)
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef long double ld;
const int maxn = 1e5 + 10, mod = 1e9 + 7;
int valid(int n, int inp[]){
int pos[n];
fill(pos, pos + n, -1);
set<int> st;
for(int i = 0; i < n; i++){
--inp[i];
if(inp[i] < 0)
return 0;
if(st.count(inp[i]))
return 0;
st.insert(inp[i]);
if(inp[i] < n)
pos[inp[i]] = i;
}
int lst = -1;
for(int i = 0; i < n; i++){
if(pos[i] != -1){
if(lst == -1)
lst = i;
if((lst - i + n) % n != (pos[lst] - pos[i] + n) % n)
return 0;
}
}
for(int i = 0; i < n; i++){
if(pos[i] != -1){
if(lst == -1)
lst = i;
if((lst - i + n) % n != (pos[lst] - pos[i] + n) % n)
return 0;
}
}
return 1;
}
int replacement(int n, int inp[], int outp[]){
const int maxl = 3e5 + 10;
int pos[maxl];
memset(pos, -1, sizeof pos);
for(int i = 0; i < n; i++){
pos[--inp[i]] = i;
}
set<int> fre;
for(int i = 0; i < n; i++){
if(inp[i] >= n)
fre.insert(i);
}
int L = 0;
for(int i = n; i < maxl; i++){
if(pos[i] == -1){
if(fre.empty())
break;
int x = *fre.begin();
outp[L++] = inp[x];
inp[x] = i;
}
else{
fre.erase(pos[i]);
int x = pos[i];
outp[L++] = inp[x];
inp[x] = i;
}
}
return L;
}
int countReplacement(int n, int inputSeq[]){
return -3;
}
# | 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... |