# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
706118 | justinhall363 | Job Scheduling (CEOI12_jobs) | C++14 | 532 ms | 33584 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <algorithm>
using namespace::std;
typedef long long ll;
#define FOR(i, b) for(ll i = 0; i < b; i++)
typedef vector<ll> vint;
typedef vector<vint> v2d;
struct req{ ll r, id;
bool operator<(const req& o)const{ return r < o.r; }};
ll N, D, M;
vector<req> reqs;
v2d days;
bool can(ll m){ //can i make all requests with m machines
days = v2d(N);
ll day = 1, m_i = 0;
FOR(i, M){
day = max(day, reqs[i].r); //cant start till on submission date
if(day > N) return false; //company shuts down
if(day > reqs[i].r + D) return false; //done after delay
days[day-1].push_back(reqs[i].id);
m_i++; //used this machine
if(m_i == m){ day++; m_i = 0; } //all machines that day used up
}
return true;
}
int main() {
//freopen("jobs.in", "r", stdin);
// freopen("jobs.out", "w", stdout);
cin>>N>>D>>M;
reqs.resize(M);
FOR(i, M) { cin>>reqs[i].r; reqs[i].id = i+1; }
sort(reqs.begin(), reqs.end());
//binary search on # of machines ---++
ll lo = 1, hi = 1e6;
while(lo != hi){
ll mid = (lo+hi)/2;
if(can(mid)) hi = mid;
else lo = mid+1;
}
//print answer
can(lo);
cout<<lo<<endl;
FOR(i, N){
for(ll r : days[i]) cout<<r<<" ";
cout<<0<<endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |