제출 #515747

#제출 시각아이디문제언어결과실행 시간메모리
515747mzhJob Scheduling (CEOI12_jobs)C++17
0 / 100
248 ms14856 KiB
#include <bits/stdc++.h> using namespace std; // 1 1 2 2 2 3 3 4 4 5 6 6 int main() { #ifdef LOCAL freopen("input.in", "r", stdin); #endif ios::sync_with_stdio(false); cin.tie(nullptr); int n, d, m; cin >> n >> d >> m; vector<pair<int, int>> t(m); for (int i = 0; i < m; i++) { cin >> t[i].first; t[i].second = i; } sort(t.begin(), t.end()); int l = 0, r = m; while (l + 1 < r) { int mid = l + (r - l) / 2; queue<int> q; for (int i = 0; i < mid; i++) { q.push(0); } bool ok = true; for (int i = 0; i < n; i++) { if (q.front() - d <= t[i].first) { q.push(max(q.front(), t[i].first) + 1); q.pop(); } else { ok = false; break; } } (ok ? r : l) = mid; } cout << r << '\n'; for (int i = 0; i < m; i++) { cout << t[i].second << ' '; if (i == n - 1 || (i && (i + 1) % r == 0)) { cout << "0\n"; } } for (int i = 0; i < n - (m + r - 1) / r; i++) { cout << "0\n"; } }
#Verdict Execution timeMemoryGrader output
Fetching results...