# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
230104 | PeppaPig | Job Scheduling (CEOI12_jobs) | C++14 | 353 ms | 23928 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>
#define pii pair<int, int>
#define x first
#define y second
using namespace std;
const int N = 1e5+5;
int n, m, d;
vector<int> job[N], ans[N];
bool solve(int mid) {
queue<pii> Q;
for(int i = 1; i <= n; i++) ans[i].clear();
for(int i = 1; i <= n; i++) {
for(int x : job[i]) Q.emplace(x, i);
while(!Q.empty() && ans[i].size() < mid) {
pii now = Q.front(); Q.pop();
if(now.y + d < i) return false;
ans[i].emplace_back(now.x);
}
}
return Q.empty();
}
int main() {
scanf("%d %d %d", &n, &d, &m);
for(int i = 1, a; i <= m; i++) {
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |