# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
104869 | daili | Job Scheduling (CEOI12_jobs) | C++14 | 691 ms | 8676 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
bool check(vector<pair<int,int>> &allJobs, int currNr, int delay, int days)
{
vector<int> used(days+1);
for (int i = 0; i < allJobs.size(); i++)
{
int currentDay = allJobs[i].first;
while(used[currentDay] >= currNr)
{
currentDay++;
}
if (currentDay > allJobs[i].first + delay)
{
return false;
}
used[currentDay]++;
}
return true;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
int n, d, m;
cin >> n >> d >> m;
vector<pair<int,int>> allJobs;
for (int i = 0; i < m; i++)
{
int x;
cin >> x;
allJobs.push_back({x, i+1});
}
sort(allJobs.begin(), allJobs.end());
int left = 0;
int right = m;
while(left < right)
{
int mid = (left + right) >> 1;
if (check(allJobs, mid, d, n))
{
right = mid;
}
else
{
left = mid + 1;
}
}
if (check(allJobs, left, d, n))
{
cout << left << "\n";
}
else
{
cout << left +1 << "\n";
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |