# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
854397 | anhphant | Job Scheduling (CEOI12_jobs) | C++14 | 28 ms | 2648 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define endl '\n'
ll N, D, M;
pair<ll, ll> A[100007];
void initialize() {
ios_base :: sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cin >> N >> D >> M;
for(int i = 1; i <= M; ++i) {
cin >> A[i].first;
A[i].second = i;
}
sort(A + 1, A + 1 + M);
}
bool check(ll MachinesCnt) {
int idx = 1;
for(int day = 1; day <= N; ++day) {
ll used_machines_in_day = 0;
while(idx <= M && used_machines_in_day < MachinesCnt) {
if (A[idx].first + D < day) return 0;
if (day < A[idx].first) break;
used_machines_in_day++;
idx++;
}
}
return idx > M;
}
void construct(ll MachinesCnt) {
int idx = 1;
for(int day = 1; day <= N; ++day) {
ll used_machines_in_day = 0;
while(idx <= M && used_machines_in_day < MachinesCnt) {
if (day < A[idx].first) break;
cout << A[idx].second << " ";
used_machines_in_day++;
idx++;
}
cout << 0 << endl;
}
}
void process() {
ll l = 1, r = 1e9;
while(l < r) {
ll mid = (l + r) / 2;
if (check(mid)) r = mid;
else l = mid + 1;
}
cout << l << endl;
construct(l);
}
int main() {
initialize();
process();
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |