# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
104821 | WLZ | Job Scheduling (CEOI12_jobs) | C++17 | 239 ms | 20216 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;
int n, d, m;
vector<int> a;
vector< vector<int> > v;
int check(int k) {
int last = 0, cnt = 0;
for (int i = 1; i <= n; i++) {
if (a[i] == 0) {
continue;
}
int left = a[i];
int pos = d + 1;
if (last >= i) {
left -= k - cnt;
pos = i + d - last;
}
if ((left + k - 1) / k > pos) {
return 0;
}
if (last >= i) {
last += 1 + left / k;
} else {
last = i + left / k;
}
cnt = left % k;
}
return 1;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |