# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
507537 | Christopher_ | Job Scheduling (CEOI12_jobs) | C++17 | 938 ms | 52876 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/**
* author: lani
* created: 12.01.2022 20:57:54
**/
#include <bits/stdc++.h>
using namespace std;
#ifdef DEBUG
#include "debug.hpp"
#else
#define dbg(...) void(37)
#endif
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n, d, m;
cin >> n >> d >> m;
set<pair<int,int>> s;
for (int i = 0; i < m; ++i) {
int tmp;
cin >> tmp;
s.insert({tmp, i});
}
int mn = 1;
int cnt = 1;
for (auto [x, y] : s) {
int res = cnt / (x + 2);
if (cnt % (x + 2)) {
++res;
}
mn = max(mn, res);
}
cout << mn << '\n';
cnt = 0;
int list = 1;
for (auto [x, y] : s) {
++cnt;
if (cnt == 3) {
cout << 0 << '\n';
++list;
cnt = 1;
cout << y + 1 << ' ';
} else {
cout << y + 1 << ' ';
}
}
if (m % mn) {
cout << 0 << '\n';
}
for (; list <= n; ++list) {
cout << "0\n";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |