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 "plants.h"
#include <iostream>
#include <cmath>
#include <vector>
#include <algorithm>
#include <set>
#include <map>
typedef long long ll;
using namespace std;
const int N = 2e5 + 10;
int r[N], perm[N];
int val[N];
int n, k;
void init(int K, vector<int> R) {
k = K;
n = (int)R.size();
for (int i = 1; i <= n; i++) {
r[i] = R[i - 1];
}
for (int i = n; i >= 1; i--) {
for (int j = 1; j <= n; j++) {
if (r[j] != 0) continue;
bool ch = true;
for (int l = j + k; l <= n; l++) {
if (r[l] == 0) {
ch = false;
}
}
for (int l = 1; l < j; l++) {
if (l + (k - 1) < j) continue;
if (r[l] == 0) {
ch = false;
}
}
if (ch) {
r[j] = -1;
perm[j] = i;
for (int l = max(1, (j - k + 1)); l < j; l++) {
r[l]--;
}
if ((j - k + 1) < 1) {
int mnac = (k - 1) - (j - 1);
for (int l = n; l > n - mnac; l--) {
r[l]--;
}
}
break;
}
}
}
}
int compare_plants(int x, int y) {
if (perm[x] > perm[y]) return 1;
return -1;
}
/*
int main() {
init(3, { 2, 1, 0, 2, 1 });
for (int i = 1; i <= 5; i++) {
cout << perm[i] << " ";
}
}
*/
# | 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... |