# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
570265 | gcconure | Job Scheduling (CEOI12_jobs) | C++17 | 372 ms | 65536 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll n,d,m;
vector<pair<ll,ll>> v;
array<vector<ll>,100001> arr;
bool ok(ll dd){
auto copy=v;
for(ll i = 0; i < 100001; i++){
arr[i]={};
}
ll day = 1;
bool works=true;
while(!v.empty()){
if(day>n){
works=false;
break;
}
for(ll i = 0; i < dd; i++){
if(v.empty()){
break;
}
if(v.back().first+d<day){
works=false;
break;
}
arr[day-1].push_back(v.back().second);
v.pop_back();
}
if(!works){
break;
}
day++;
}
v=copy;
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;
array<vector<ll>,100001> cur;
while(l<r){
ll mid = (l+r)/2;
if(ok(mid)){
cur=arr;
r=mid;
}
else{
l=mid+1;
}
}
cout << l << "\n";
int counter = 0;
for(vector<ll> vv:cur){
if(counter==n){
break;
}
for(ll i:vv){
cout << i+1 << " ";
}
cout << 0 << "\n";
counter++;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |