# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
250656 | kingfran1907 | Studentsko (COCI14_studentsko) | C++14 | 3 ms | 512 KiB |
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>
using namespace std;
typedef long long llint;
const int maxn = 5010;
const int inf = 0x3f3f3f3f;
int n, k;
int niz[maxn];
vector< int > v;
int mi[maxn], ma[maxn];
int pos[maxn];
int main() {
scanf("%d%d", &n, &k);
for (int i = 0; i < n; i++)
scanf("%d", niz+i);
for (int i = 0; i < n; i++) v.push_back(niz[i]);
sort(v.begin(), v.end());
for (int i = 0; i < n; i++)
niz[i] = lower_bound(v.begin(), v.end(), niz[i]) - v.begin();
memset(mi, inf, sizeof mi);
for (int i = 0; i < n; i++) {
int tren = niz[i] / k;
mi[tren] = min(mi[tren], i);
ma[tren] = max(ma[tren], i);
pos[niz[i]] = i;
}
int l = n / k;
int sol = 0;
for (int i = 0; i < l; i++) {
int tren = 0;
int mini = mi[i];
int maxi = -1;
int las = -1;
for (int j = i; j < l; j++) {
if (mi[j] > maxi) {
maxi = ma[j];
tren += k;
las = j;
} else break;
}
for (int j = 1; j < k; j++) {
int ac = i * k - j;
if (ac < 0) break;
if (pos[ac] < mini) tren++;
else break;
}
for (int j = 0; j < k - 1; j++) {
int ac = (las + 1) * k + j;
if (ac >= n) break;
if (pos[ac] > maxi) tren++;
else break;
}
sol = max(sol, tren);
}
printf("%d", n - sol);
return 0;
}
Compilation message (stderr)
# | 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... |