# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
515754 | mzh | Job Scheduling (CEOI12_jobs) | C++17 | 168 ms | 9140 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
// 1 1 2 2 2 3 3 4 4 5 6 6
int main() {
#ifdef LOCAL
freopen("input.in", "r", stdin);
#endif
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n, d, m;
cin >> n >> d >> m;
vector<pair<int, int>> t(m);
for (int i = 0; i < m; i++) {
cin >> t[i].first;
t[i].second = i;
}
sort(t.begin(), t.end());
int l = 0, r = m;
while (l + 1 < r) {
int mid = l + (r - l) / 2;
queue<int> q;
for (int i = 0; i < mid; i++) {
q.push(0);
}
bool ok = true;
for (int i = 0; i < n; i++) {
if (q.front() - d <= t[i].first) {
q.push(max(q.front(), t[i].first) + 1);
q.pop();
} else {
ok = false;
break;
}
}
(ok ? r : l) = mid;
}
cout << r << '\n';
// for (int i = 0; i < m; i++) {
// cout << t[i].second << ' ';
// if (i == n - 1 || (i && (i + 1) % r == 0)) {
// cout << "0\n";
// }
// }
// for (int i = 0; i < n - (m + r - 1) / r; i++) {
// cout << "0\n";
// }
for (int i = 0; i < n; i++) {
cout << "0\n";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |