# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
48621 | doowey | Job Scheduling (CEOI12_jobs) | C++14 | 293 ms | 15760 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>J[N];
int rem[N];
bool can(int k){
for(int i = 1;i <= n;i ++)
rem[i] = J[i].size();
int p = 1;
int tt = 0;
int kk;
for(int i = 1;i <= n;i ++){
kk = k;
if(i - p > d)
return false;
while(kk > 0 && p <= i){
if(rem[p] == 0){
p++;
continue;
}
kk--;
rem[p]--;
}
}
return true;
}
void output_solution(int x){
cout << x << "\n";
int p = 1;
int tt;
for(int i = 1;i <= n;i ++ ){
tt = x;
while(p <= i and tt > 0){
if(J[p].empty()){
p++;
continue;
}
cout << J[p].back() << " ";
tt--;
J[p].pop_back();
}
cout << "0\n";
}
}
int main(){
fastIO;
int m;
cin >> n >> d >> m;
int x;
for(int i = 1 ;i <= m;i ++){
cin >> x;
J[x].push_back(i);
}
int lf = 0,rf = m + 1;
int md;
while(rf-lf > 1){
md = (lf + rf) / 2;
if(can(md))
rf = md;
else
lf = md;
}
output_solution(rf);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |