# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
554887 | Genius3435 | Job Scheduling (CEOI12_jobs) | C++17 | 267 ms | 16868 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
constexpr int N = 100005;
constexpr int M = 1000005;
vector<int> ids[N];
int n, d, m;
bool test(int c, bool print=false) {
queue<pair<int, int>> q; // stores {day, id}
for (int i = 1; i <= n; ++i) {
for (const int id : ids[i]) q.emplace(i, id);
for (int j = 0; j < c && !q.empty(); ++j) {
if (print) printf("%d ", q.front().second);
q.pop();
}
if (print) printf("0\n");
if (!q.empty() && q.front().first < i-d) return false;
}
return q.empty();
}
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
cin >> n >> d >> m;
for (int x, i = 1; i <= m; ++i) {
cin >> x; ids[x].push_back(i);
}
int l = 1, r = m;
while (l < r) {
const int md = l + (r-l)/2;
if (test(md)) r = md;
else l = md+1;
}
printf("%d\n", l);
test(l, true);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |