# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
48578 | doowey | Job Scheduling (CEOI12_jobs) | C++14 | 178 ms | 15408 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef long double ld;
#define fi first
#define se second
#define mp make_pair
#define fastIO ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define TEST freopen("in.txt","r",stdin);
#define ab(a) ((a < 0) ? (-(a)) : (a))
#define len(x) ((int)(x).size())
#define ones(x) __builtin_popcount((x))
#define all(x) x.begin(), x.end()
const int N = (int)1e5 + 999;
int n,d;
vector<int>R[N];
int has_done[N];
bool can(int k){
for(int i = 0;i < N; i ++ )
has_done[i] = 0;
int tt = 0;
for(int i = 1;i <= d;i ++ )
tt += len(R[i]);
if(tt >= (d + 1) * k)
return false;
int p = 1;
for(int i = d + 1;i <= n;i ++ ){
tt -= len(R[p]);
p++;
if(tt >= (d + 1) * k)
return false;
}
return true;
}
void output_solution(int answer){
cout << answer << "\n";
for(int j = 0;j < N;j ++ )
has_done[j] = 0;
int p = 1;
int tt;
for(int i = 1;i <= n;i ++ ){
tt = answer;
while(p <= i and tt > 0){
if(len(R[p]) == has_done[p]){
p++;
continue;
}
cout << R[p][has_done[p]] << " ";
has_done[p]++;
tt--;
}
cout << "0\n";
}
}
int main(){
fastIO;
int m;
cin >> n >> d >> m;
int x;
for(int i = 0;i < m;i ++ ){
cin >> x;
R[x].push_back(i + 1);
}
int lf = 0, rf = m + 1;
int md;
while(lf + 1 < rf){
md = (lf + rf) / 2;
if(can(md))
rf = md;
else
lf = md;
}
output_solution(rf);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |