# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
504337 | ac2hu | Job Scheduling (CEOI12_jobs) | C++14 | 221 ms | 13648 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 1e5 + 10;
const int M = 1e6 + 10;
pair<int,int> a[M];
int n,d,m;
bool check(int mid){
int ans = 0;
int k = 1;
for(int i = 0;i<m;i+=mid){
ans = max(ans,k - a[i].first);
k++;
}
// cout << mid << " " << k << " " << ans << "\n";
if(ans <= d && !(k > n))
return true;
else
return false;
}
signed main(){
iostream::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> d >> m;
for(int i =0;i<m;i++){
cin >> a[i].first;
a[i].second = i;
}
sort(a,a + m);
// for(int i = 0;i<m;i++)
// cout << a[i].first << " ";
// cout << "\n";
int l = 1,r = m;
while(l < r){
int mid = (l + r - 1)/2;
if(check(mid))
r = mid;
else
l = mid + 1;
}
cout << l << "\n";
int idx = -1;
for(int i = 0;i<n;i++){
if(idx == m)
cout << 0 << "\n";
else{
int j;
int temp = idx;
for(j = temp + 1;j<min(temp + l + 1, m);j++){
idx = j;
cout << a[idx].second + 1 << " ";
}
cout << 0 << "\n";
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |