# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
573089 | updown1 | Job Scheduling (CEOI12_jobs) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll n,d,m;
vector<pair<ll,ll>> v;
bool ok(ll dd){
ll day = 1;
bool works=true;
ll w = v.size()-1;
while(w>=0){
if(day>n){
works=false;
break;
}
for(ll i = 0; i < dd; i++){
if(w<0){
break;
}
if(v[w].first+d<day){
works=false;
break;
}
w--;
}
if(!works){
break;
}
day++;
}
return works;
}
int main(){
cin >> n >> d >> m;
for(ll i = 0; i < m; i++){
ll x; cin >> x;
v.push_back({x,i});
}
sort(v.rbegin(), v.rend());
ll l = 1,r=m;
while(l<r){
ll mid = (l+r)/2;
if(ok(mid)){
r=mid;
}
else{
l=mid+1;
}
}
okay(l);
ll counter =0 ;
cout << l << "\n";
while(!v.empty()){
counter++;
for(ll i = 0; i < l; i++){
cout << v.back().second+1 << " ";
v.pop_back();
if(v.empty()){
break;
}
}
cout << "0\n";
}
for(ll i = 0; i < n-counter; i++){
cout << 0 << "\n";
}
}