# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
711359 | xyzxyz | Job Scheduling (CEOI12_jobs) | C++14 | 337 ms | 39056 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
long long n, d, m;
cin >> n >> d >> m;
vector<int> requests(m);
vector<vector<int>> auftrage(m);
int upper = 0, lower = 1;
for (int i = 1; i <= m; i++) {
int a;
cin >> a;
a--;
requests[a]++;
auftrage[a].push_back(i);
upper = max(upper, requests[a]);
}
while(upper-lower>0){
int maschinen = (lower+upper)/2;
int last = 0, rest = requests[0];
bool pos = true;
for(int i=0; i<m && pos; i++){
if (i - last > d) pos = false;
int tmp = maschinen;
while(tmp>0 && last+1<=i){
int tmp2 = min(rest, tmp);
tmp -= tmp2;
rest -= tmp2;
if(rest == 0 && last+1<=i){
last++;
rest = requests[last];
}
}
}
if(pos){
//cout << maschinen << endl;
upper = maschinen;
}
else lower = maschinen+1;
}
cout << lower << endl;
int curr = 0;
int j = auftrage[curr].size()-1;
for (int b = 0; b < n; b++) {
for (int i = 0; i < lower && b >= curr && curr < auftrage.size() && j >= 0; i++) {
cout << auftrage[curr][j] << " ";
j--;
if (j < 0) {
curr++;
if(curr < auftrage.size()) j = auftrage[curr].size()-1;
}
}
cout << 0 << endl;
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |