# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
666717 | omikron123 | Job Scheduling (CEOI12_jobs) | C++14 | 1085 ms | 14028 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// https://oj.uz/problem/view/CEOI12_jobs
#include <cstdio>
#include <algorithm>
#include <queue>
#include <vector>
using namespace std;
// n,d<=1e5, m<=1e6
int n, d, m;
struct J {
int s, idx;
};
J jobs[1000005];
// return if x machine is enough
bool check(int x, bool print) {
// {deadline, idx}
priority_queue<pair<int,int>, vector<pair<int,int>>, greater<pair<int,int>> > q;
int j = 0; // job index
for (int i = 1; i <= n; i++) {
// enqueue job arrivals
for (; j < m && jobs[j].s == i; j++)
q.push({i + d, jobs[j].idx});
// consume jobs in queue
int cnt = 0;
while(!q.empty() && cnt < x) {
int deadline = q.top().first;
int idx = q.top().second;
q.pop();
if (deadline < i) // already expired
return false;
cnt++;
if (print)
printf("%d ", idx);
}
if (print)
printf("0\n");
}
return true;
}
bool cmp(J &a, J &b) {return a.s < b.s;}
int main() {
scanf("%d %d %d", &n, &d, &m);
for (int i = 0; i < m; i++) {
scanf("%d", &jobs[i].s);
jobs[i].idx = i+1;
}
sort(jobs, jobs+m, cmp);
int low = 1, high = m;
while (low < high) {
int mid = (low + high) / 2;
if (check(mid, false))
high = mid;
else
low = mid+1;
}
printf("%d\n", low);
check(low, true);
return 0;
}
/*
8 2 12
1 2 4 2 1 3 5 6 2 3 6 4
answer is 2
*/
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |